Files
octokit.net/Octokit.ruleset
Mickaël Derriey 6b8dde10e2 Remove unneeded files for .NET Core (#1549)
* add .ruleset back to both Octokit and Octokit.Reactive

* rename Octokit.Core.sln to Octokit.sln

* remove platform-specific solution files

* remove .nuspec files

NuGet packaging information is now in the relevant project.json files

* remove ext folder containing platform-specific assemblies

* update the description of the .ruleset file we use
2017-01-29 07:46:38 +10:00

13 lines
624 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="GitHub" Description="This ruleset enables all of the Microsoft CodeAnalysis rules, with a few deliberate exceptions" ToolsVersion="14.0">
<IncludeAll Action="Error" />
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed">
<Rule Id="CA1006" Action="None" />
<Rule Id="CA1014" Action="None" />
<Rule Id="CA1020" Action="None" />
<Rule Id="CA1054" Action="None" />
<Rule Id="CA1056" Action="None" />
<Rule Id="CA1726" Action="None" />
<Rule Id="CA2210" Action="None" />
</Rules>
</RuleSet>