The following code produced an SA1101 report, and the code fix threw an exception:
protected async Task Method(Func<(Project project, bool fixAll), Task> verifyFixedProjectAsync)
{
// SA1101 reported twice on the following line:
Func<Project, Task> verifyAsync = project => verifyFixedProjectAsync((project: project, fixAll: false));
}
I can confirm the same problem on my side.
Code:
someList.Select(x => (SomeName: $"{x.ValueA} ({x.ValueB})", x.ValueC))
Reported SA1101 for SomeName
@sharwell Do you need help with this issue? I would not mind giving it a try.
@dlemstra Go for it 馃憤
are you planning to release it? thanks :) it has been a while since last release
Most helpful comment
are you planning to release it? thanks :) it has been a while since last release