Skip to content

Commit

Permalink
Remove unneeded files for .NET Core (octokit#1549)
Browse files Browse the repository at this point in the history
* 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
mderriey authored and ryangribble committed Jan 28, 2017
1 parent 938149f commit 6b8dde1
Show file tree
Hide file tree
Showing 22 changed files with 35 additions and 325 deletions.
59 changes: 0 additions & 59 deletions Octokit-Mono.sln

This file was deleted.

83 changes: 0 additions & 83 deletions Octokit-XamarinStudio.sln

This file was deleted.

46 changes: 0 additions & 46 deletions Octokit.Core.sln

This file was deleted.

19 changes: 0 additions & 19 deletions Octokit.Reactive.nuspec

This file was deleted.

5 changes: 4 additions & 1 deletion Octokit.Reactive/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
"../Octokit/Helpers/Ensure.cs",
"../Octokit/Helpers/Pagination.cs"
]
}
},
"additionalArguments": [
"/ruleset:../Octokit.ruleset"
]
},
"packOptions": {
"summary": "An IObservable based GitHub API client library for .NET using Reactive Extensions"
Expand Down
33 changes: 0 additions & 33 deletions Octokit.nuspec

This file was deleted.

4 changes: 2 additions & 2 deletions Octokit.ruleset
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>
Loading

0 comments on commit 6b8dde1

Please sign in to comment.