NRefactory icon indicating copy to clipboard operation
NRefactory copied to clipboard

New analizer suggestion: ConfigureAwait checking

Open DavidKarlas opened this issue 11 years ago • 0 comments

Libraries writers who use async/await (e.g. roslyn) use almost always .ConfigureAwait(false). I this case it would make sense to have some analizer like this: http://blog.cincura.net/233476-checking-for-configureawait-false-automatically/

If WPF or other UI developers don't like this warnings they can always disable this analizer... or use .ConfigureAwait(true) to silence it if 99% of other await have to use .ConfigureAwait(false).

DavidKarlas avatar Jan 20 '15 18:01 DavidKarlas