disable CA1707 warning in unit test projects per Roy Osherove's naming convention

https://stackoverflow.com/a/1594049/2343739
This commit is contained in:
Collin M. Barrett 2019-07-05 16:32:14 -05:00
parent 250b06df30
commit 3b3e238af1
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@
<!-- Avoid dead conditional code -->
<Rule Id="CA1509" Action="None" />
<!-- Invalid entry in code metrics rule specification file -->
<Rule Id="CA1707" Action="Warning" />
<Rule Id="CA1707" Action="None" />
<!-- https://stackoverflow.com/a/1594049/2343739 -->
<!-- Identifiers should not contain underscores -->
<Rule Id="CA1708" Action="None" />

View file

@ -89,7 +89,7 @@
<!-- Avoid dead conditional code -->
<Rule Id="CA1509" Action="None" />
<!-- Invalid entry in code metrics rule specification file -->
<Rule Id="CA1707" Action="Warning" />
<Rule Id="CA1707" Action="None" />
<!-- https://stackoverflow.com/a/1594049/2343739 -->
<!-- Identifiers should not contain underscores -->
<Rule Id="CA1708" Action="None" />