disable no longer relevant CA2007 warning for .NET Core apps

This commit is contained in:
Collin M. Barrett 2019-07-05 16:10:46 -05:00
parent 3a8c9286a3
commit 4751939f7c

View file

@ -133,7 +133,8 @@
<!-- Mark members as static -->
<Rule Id="CA1823" Action="Warning" />
<!-- Avoid unused private fields -->
<Rule Id="CA2007" Action="None" /> <!-- https://stackoverflow.com/a/42058544 -->
<Rule Id="CA2007" Action="None" />
<!-- https://stackoverflow.com/a/42058544 -->
<!-- Consider calling ConfigureAwait on the awaited task -->
<Rule Id="CA2119" Action="Warning" />
<!-- Seal methods that satisfy private interfaces -->