SergeyTeplyakov / ErrorProne.NET

Set of roslyn-based analyzers for catching common C# errors (inspired by Google's error-prone)
MIT License
886 stars 42 forks source link

Implement TaskInUsingBlockAnalyzer #278

Closed SergeyTeplyakov closed 8 months ago

SergeyTeplyakov commented 8 months ago

The PR adds an analyzer to work for the cases like using var _ = FooBarAsync().

Fixes #204