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

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"
}
}
}
}