forked from octokit/octokit.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unneeded files for .NET Core (octokit#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
- Loading branch information
1 parent
938149f
commit 6b8dde1
Showing
22 changed files
with
35 additions
and
325 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RuleSet Name="GitHub" Description="This ruleset only includes the rules we care about. I'll be adding new ones as we fix our codebase." ToolsVersion="11.0"> | ||
<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" /> | ||
<Rule Id="CA1054" Action="None" /> | ||
</Rules> | ||
</RuleSet> |
Oops, something went wrong.