Remove more doc warnings

This commit is contained in:
Bond-009 2019-02-13 18:47:26 +01:00
parent 8b04fe7633
commit e620bb9512
2 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,7 @@
<!-- We need C# 7.1 for async main-->
<LangVersion>latest</LangVersion>
<!-- Disable ducumentation warnings (for now) -->
<NoWarn>SA1600</NoWarn>
<NoWarn>SA1600;CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>

View File

@ -14,4 +14,8 @@
<!-- disable warning SA1633: The file header is missing or not located at the top of the file -->
<Rule Id="SA1633" Action="None" />
</Rules>
<Rules AnalyzerId="Microsoft.CodeAnalysis.FxCopAnalyzers" RuleNamespace="Microsoft.Design">
<!-- disable warning CA1054: Change the type of parameter url from string to System.Uri -->
<Rule Id="CA1054" Action="None" />
</Rules>
</RuleSet>