mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
* 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
34 lines
772 B
JSON
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": {}
|
|
}
|
|
} |