* Update gitignore * Move csproj * Update project references * Update solutions * Update build scripts * Tests used to share editorconfig with projects in src * Fix broken tests. * Stop copying around .editorconfig merged root one with linting * csharp_style_expression_bodied -> suggestion * Move StyleCop rulesets to matching directories and update shared build properties * Remove legacy build files, update NuGet.cofig and solution files * Restore myget source * Clean up .gitignore * Update .gitignore * Move new test classes to tests after merge * Gitignore + nuget config * Move new test Co-authored-by: Ronald Barendse <ronald@barend.se>
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RuleSet Name="CodeAnalysis.Tests" ToolsVersion="16.0">
|
|
<Include Path="../codeanalysis.ruleset" Action="Default" />
|
|
<Rules AnalyzerId="Microsoft.CodeAnalysis.CSharp" RuleNamespace="Microsoft.CodeAnalysis.CSharp">
|
|
<Rule Id="CS1591" Action="None" />
|
|
</Rules>
|
|
<Rules AnalyzerId="Microsoft.CodeAnalysis.CSharp.Features" RuleNamespace="Microsoft.CodeAnalysis.CSharp.Features">
|
|
<Rule Id="IDE0058" Action="None" />
|
|
</Rules>
|
|
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
|
|
<Rule Id="SA0001" Action="None" />
|
|
<Rule Id="SA1115" Action="None" />
|
|
<Rule Id="SA1201" Action="None" />
|
|
<Rule Id="SA1202" Action="None" />
|
|
<Rule Id="SA1203" Action="None" />
|
|
<Rule Id="SA1204" Action="None" />
|
|
<Rule Id="SA1310" Action="None" />
|
|
<Rule Id="SA1401" Action="None" />
|
|
<Rule Id="SA1600" Action="None" />
|
|
<Rule Id="SA1601" Action="None" />
|
|
<Rule Id="SA1602" Action="None" />
|
|
<Rule Id="SA1611" Action="None" />
|
|
<Rule Id="SA1618" Action="None" />
|
|
<Rule Id="SA1642" Action="None" />
|
|
</Rules>
|
|
</RuleSet>
|