GitXplorerGitXplorer
l

ConfigureAwaitAnalyzer

public
1 stars
0 forks
1 issues

Commits

List of commits on branch main.
Unverified
46fc38b5bf2f86207121f74c536001ffcc9206a1

norefs Added an ability to suppress analyzer.

llsoft committed 4 months ago
Unverified
0957faca765c0ec17d3b1b08dd7fc190735fba02

norefs Minor optimizations.

llsoft committed 2 years ago
Unverified
d492f1464479b30fcda8dda82a261737d27572d3

norefs fix about await Task.Yield();

llsoft committed 2 years ago
Unverified
1ab2f1217912a534805c060360c83a88d29a937e

norefs Fixed bug with ValueTask.

llsoft committed 2 years ago
Unverified
ed861b2c45391829e4974eaee1fd7c0111150765

minor optimizations for better performance and lesser allocations; cleanuped some code.

llsoft committed 3 years ago
Unverified
29697b681b0bafec3d1b29d6e294973b16463a75

initial commit

llsoft committed 3 years ago

README

The README file for this repository.

ConfigureAwaitAnalyzer

This is an explicit ConfigureAwait analyzer. It will post a warning if no explicit ConfigureAwait in awaitable expression found.

You can suppress the analyzer for your specific method or property if you need:

            //suppress AsyncConfigureAwait
            public async Task DoInternalAsync()
            {
            }

            //suppress AsyncConfigureAwait
            public static Task DoInternalAsync => Task.CompletedTask;

An appropriate nuget can be found here