ConfigureAwaitChecker
ConfigureAwaitChecker copied to clipboard
Consider handling ConfigureAwait overloads with ConfigureAwaitOptions
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 not explicitly include ContinueOnCapturedContext it also means ConfigureAwait(false)
task.ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing)
Would you be interested in sending PR?