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
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"version": "1.0.0-*",
|
|
"title": "Octokit",
|
|
"authors": [
|
|
"GitHub"
|
|
],
|
|
"description": "An async-based GitHub API client library for .NET",
|
|
"xmlDoc": true,
|
|
"buildOptions": {
|
|
"compile": {
|
|
"includeFiles": [
|
|
"../SolutionInfo.cs"
|
|
]
|
|
},
|
|
"additionalArguments": [
|
|
"/ruleset:../Octokit.ruleset"
|
|
]
|
|
},
|
|
"packOptions": {
|
|
"summary": "An async-based GitHub API client library for .NET"
|
|
},
|
|
"frameworks": {
|
|
"netstandard1.1": {
|
|
"dependencies": {
|
|
"NETStandard.Library": "1.6.0"
|
|
},
|
|
"buildOptions": {
|
|
"define": [
|
|
"HAS_TYPEINFO",
|
|
"SIMPLE_JSON_INTERNAL",
|
|
"SIMPLE_JSON_OBJARRAYINTERNAL",
|
|
"SIMPLE_JSON_READONLY_COLLECTIONS",
|
|
"SIMPLE_JSON_TYPEINFO",
|
|
"NO_SERIALIZABLE"
|
|
]
|
|
}
|
|
},
|
|
"net45": {
|
|
"buildOptions": {
|
|
"define": [
|
|
"HAS_ENVIRONMENT",
|
|
"HAS_REGEX_COMPILED_OPTIONS",
|
|
"SIMPLE_JSON_INTERNAL",
|
|
"SIMPLE_JSON_OBJARRAYINTERNAL",
|
|
"SIMPLE_JSON_READONLY_COLLECTIONS"
|
|
]
|
|
},
|
|
"frameworkAssemblies": {
|
|
"System.Net.Http": "4.0.0.0"
|
|
}
|
|
}
|
|
}
|
|
} |