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:28:08 -05:00
parent 670e3bcb15
commit 250b06df30
3 changed files with 4 additions and 1 deletions

View file

@ -91,6 +91,7 @@
<Rule Id="CA1509" Action="None" />
<!-- Invalid entry in code metrics rule specification file -->
<Rule Id="CA1707" Action="Warning" />
<!-- https://stackoverflow.com/a/1594049/2343739 -->
<!-- Identifiers should not contain underscores -->
<Rule Id="CA1708" Action="None" />
<!-- Identifiers should differ by more than case -->

View file

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

View file

@ -89,7 +89,8 @@
<!-- 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" />
<!-- Identifiers should differ by more than case -->