Files
octokit.net/Octokit.Reactive/project.json
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

34 lines
772 B
JSON

{
"version": "1.0.0-*",
"title": "Octokit.Reactive",
"authors": [
"GitHub"
],
"description": "An IObservable based GitHub API client library for .NET using Reactive Extensions",
"xmlDoc": true,
"buildOptions": {
"compile": {
"includeFiles": [
"../SolutionInfo.cs",
"../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"
},
"dependencies": {
"Octokit": {
"target": "project"
},
"System.Reactive": "3.1.0"
},
"frameworks": {
"netstandard1.1": {},
"net45": {}
}
}