Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 514 Bytes

README.md

File metadata and controls

8 lines (5 loc) · 514 Bytes

ConfigureAwait Checker

ReSharper extension and Rider plugin that check for tasks are not awaited using ConfigureAwait.

Library code should use ConfigureAwait(false) with every await. Always specifying ConfigureAwait makes it clearer how the continuation is invoked and avoids synchronization bugs.