Disable Async Await Warning (C#/.NET)
Hi,
In my IDE I always get the "Consider calling ConfigureAwait on the awaited task" warning when using async await. Is there a way to disable this warning just in my IDE?
Please note, I don't want to disable it in csproj as these changes will not be included in git and will be a pain to add it in for every branch I create.
Please sign in to leave a comment.
Hi Duncan!
One can change the severity of the async/await inspections in File | Settings | Editor | Inspection Settings | Inspection Severity | C#. These settings don't affect your csproj. I hope this helps!