Update to be editable via the UI

This commit is contained in:
James Jackson-South
2020-11-30 21:19:02 +00:00
parent 70aa61ce4c
commit 2261ca8e45
2 changed files with 21 additions and 80 deletions

View File

@@ -1,38 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="CodeAnalysis" ToolsVersion="15.0">
<RuleSet Name="CodeAnalysis" ToolsVersion="16.0">
<Rules AnalyzerId="Roslynator.CSharp.Analyzers" RuleNamespace="Roslynator.CSharp">
<!--Call 'ConfigureAwait(false)'-->
<Rule Id="RCS1090" Action="None" />
</Rules>
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
<!--Prefix local calls with this-->
<Rule Id="SA1101" Action="None" />
<!--Using directive should appear within a namespace declaration-->
<Rule Id="SA1200" Action="None" />
<!--Variable names must not be prefixed-->
<Rule Id="SA1308" Action="None" />
<!--Field names must not begin with underscore-->
<Rule Id="SA1309" Action="None" />
<!--Static readonly fields must begin with upper case letter-->
<Rule Id="SA1311" Action="None" />
<!--A C# code file contains more than one unique type.-->
<Rule Id="SA1402" Action="None" />
<!--The last statement in a multi-line C# initializer or list is missing a trailing comma.-->
<Rule Id="SA1413" Action="None" />
<!--Comments should end with a period.-->
<Rule Id="SA1629" Action="None" />
<!--A C# code file is missing a standard file header.-->
<Rule Id="SA1633" Action="Warning" />
</Rules>
</RuleSet>
</RuleSet>