Category: Usage
Rule: Use ConfigureAwait(false)
Severity: Hidden
Description: This analyzer identifies code which uses await on a Task, and does not use ConfigureAwait(false). By default it uses Hidden severity, which enables Ctrl+. on the line containing the call, but libraries that don't interact with the UI can reset the severity to Warning or Error in order to enforce this rule across an entire project.
Category: Usage Rule: Use ConfigureAwait(false) Severity: Hidden Description: This analyzer identifies code which uses
await
on aTask
, and does not useConfigureAwait(false)
. By default it uses Hidden severity, which enables Ctrl+. on the line containing the call, but libraries that don't interact with the UI can reset the severity to Warning or Error in order to enforce this rule across an entire project.