mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
disable CA1062 since beta C#8 nullable ref types is enabled
https://github.com/MicrosoftDocs/visualstudio-docs/issues/3588
This commit is contained in:
parent
4751939f7c
commit
57757b7006
2 changed files with 4 additions and 2 deletions
|
|
@ -65,7 +65,8 @@
|
|||
<!-- Move pinvokes to native methods class -->
|
||||
<Rule Id="CA1061" Action="Warning" />
|
||||
<!-- Do not hide base class methods -->
|
||||
<Rule Id="CA1062" Action="Warning" />
|
||||
<Rule Id="CA1062" Action="None" />
|
||||
<!-- https://github.com/MicrosoftDocs/visualstudio-docs/issues/3588 -->
|
||||
<!-- Validate arguments of public methods -->
|
||||
<Rule Id="CA1063" Action="Warning" />
|
||||
<!-- Implement IDisposable Correctly -->
|
||||
|
|
|
|||
|
|
@ -65,7 +65,8 @@
|
|||
<!-- Move pinvokes to native methods class -->
|
||||
<Rule Id="CA1061" Action="Warning" />
|
||||
<!-- Do not hide base class methods -->
|
||||
<Rule Id="CA1062" Action="Warning" />
|
||||
<Rule Id="CA1062" Action="None" />
|
||||
<!-- https://github.com/MicrosoftDocs/visualstudio-docs/issues/3588 -->
|
||||
<!-- Validate arguments of public methods -->
|
||||
<Rule Id="CA1063" Action="Warning" />
|
||||
<!-- Implement IDisposable Correctly -->
|
||||
|
|
|
|||
Loading…
Reference in a new issue