Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Latest commit

 

History

History
10 lines (6 loc) · 657 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 657 Bytes

ConfigureAwait Checker

ARCHIVED: This functionality has been added to JetBrains products.

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.