sensenet icon indicating copy to clipboard operation
sensenet copied to clipboard

Async await code checker

Open tusmester opened this issue 2 years ago • 0 comments

Create a tool that is able to discover async operations in source code and find issues. Create user stories for individual issues!

  • async operations called without await
  • async operations called without ConfigureAwait(false)
  • async operations called with Wait() or Result
  • find async candidates by collecting GetAwaiter().GetResult() calls
  • async operations without CancellationToken parameter
  • async operations that do not use the provided CancellationToken parameter.

tusmester avatar Sep 26 '22 13:09 tusmester