ConfigureAwaitChecker icon indicating copy to clipboard operation
ConfigureAwaitChecker copied to clipboard

ConfigureAwaitChecker

Results 3 ConfigureAwaitChecker issues
Sort by recently updated
recently updated
newest added

Here's a minimal .NET 6 console app repro - using `ConfigureAwaitChecker.Analyzer` v5.0.0.1, in VS2022 Professional v17.2.5 ``` Console.WriteLine("Hello, World!"); var y = await DoSomethingElseAsync().ConfigureAwait(false); async Task DoSomethingElseAsync() { var foo...

For example this ``` await using (var test = ...) { } ``` with `ConfigureAwait(false)` will result in `test` being `ConfiguredAsyncDisposable` type.

Currently when you use ConfigureAwait with ConfigureAwaitOptions instead of a boolean you always get the warning of an explicit `ConfigureAwait(true)`. However when I use the new overload and I do...