Remove more doc warnings

pull/885/head
Bond-009 5 years ago
parent 8b04fe7633
commit e620bb9512

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

@ -14,4 +14,8 @@
<!-- disable warning SA1633: The file header is missing or not located at the top of the file --> <!-- disable warning SA1633: The file header is missing or not located at the top of the file -->
<Rule Id="SA1633" Action="None" /> <Rule Id="SA1633" Action="None" />
</Rules> </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> </RuleSet>

Loading…
Cancel
Save