disable CA1034 for project using MediatR per Jimmy's examples

https://github.com/jbogard/ContosoUniversity/issues/37
This commit is contained in:
Collin M. Barrett 2019-07-05 16:22:32 -05:00
parent 57757b7006
commit 670e3bcb15

View file

@ -37,7 +37,8 @@
<!-- Do not catch general exception types -->
<Rule Id="CA1033" Action="None" />
<!-- Interface methods should be callable by child types -->
<Rule Id="CA1034" Action="Warning" />
<Rule Id="CA1034" Action="None" />
<!-- https://github.com/jbogard/ContosoUniversity/issues/37 -->
<!-- Nested types should not be visible -->
<Rule Id="CA1036" Action="Warning" />
<!-- Override methods on comparable types -->