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

aelij/ConfigureAwaitChecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e54bcc9 · Nov 24, 2021

History

83 Commits
Jan 26, 2021
Apr 20, 2021
Sep 21, 2014
Jan 26, 2021
Sep 21, 2014
Nov 24, 2021

Repository files navigation

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.