Merge branch 'release' into dev
This commit is contained in:
commit
f3cc1f0e20
|
|
@ -1,21 +1,29 @@
|
||||||
{
|
{
|
||||||
"compilationOptions": {
|
"buildOptions": {
|
||||||
"warningsAsErrors": true
|
"warningsAsErrors": true,
|
||||||
|
"copyToOutput": {
|
||||||
|
"include": [
|
||||||
|
"Http.config",
|
||||||
|
"nginx.conf",
|
||||||
|
"NtlmAuthentication.config"
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"testRunner": "xunit",
|
"testRunner": "xunit",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"dotnet-test-xunit": "1.0.0-*",
|
||||||
"Microsoft.AspNetCore.Server.Testing": "1.0.0-*",
|
"Microsoft.AspNetCore.Server.Testing": "1.0.0-*",
|
||||||
"Microsoft.Extensions.Logging": "1.0.0-*",
|
"Microsoft.Extensions.Logging": "1.0.0-*",
|
||||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
||||||
"Microsoft.Net.Http.Headers": "1.0.0-*"
|
"Microsoft.Net.Http.Headers": "1.0.0-*"
|
||||||
},
|
},
|
||||||
|
"publishOptions": {
|
||||||
"content": [
|
"include": [
|
||||||
"Http.config",
|
"Http.config",
|
||||||
"nginx.conf",
|
"nginx.conf",
|
||||||
"NtlmAuthentication.config"
|
"NtlmAuthentication.config"
|
||||||
],
|
]
|
||||||
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {
|
"net451": {
|
||||||
"frameworkAssemblies": {
|
"frameworkAssemblies": {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
|
||||||
|
|
@ -13,12 +13,14 @@
|
||||||
"compile": [
|
"compile": [
|
||||||
"../ServerComparison.TestSites/Startup*.cs"
|
"../ServerComparison.TestSites/Startup*.cs"
|
||||||
],
|
],
|
||||||
"compilationOptions": {
|
"buildOptions": {
|
||||||
"emitEntryPoint": true
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"content": [
|
"publishOptions": {
|
||||||
"web.config"
|
"include": [
|
||||||
],
|
"web.config"
|
||||||
|
]
|
||||||
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
|
@ -40,11 +42,11 @@
|
||||||
"postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
|
"postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
|
||||||
},
|
},
|
||||||
"runtimes": {
|
"runtimes": {
|
||||||
"win7-x64": { },
|
"win7-x64": {},
|
||||||
"win7-x86": { },
|
"win7-x86": {},
|
||||||
"osx.10.10-x64": { },
|
"osx.10.10-x64": {},
|
||||||
"osx.10.11-x64": { },
|
"osx.10.11-x64": {},
|
||||||
"ubuntu.14.04-x64": { },
|
"ubuntu.14.04-x64": {},
|
||||||
"ubuntu.15.04-x64": { }
|
"ubuntu.15.04-x64": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -10,12 +10,14 @@
|
||||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
||||||
"Microsoft.Net.Http.Headers": "1.0.0-*"
|
"Microsoft.Net.Http.Headers": "1.0.0-*"
|
||||||
},
|
},
|
||||||
"compilationOptions": {
|
"buildOptions": {
|
||||||
"emitEntryPoint": true
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"content": [
|
"publishOptions": {
|
||||||
"web.config"
|
"include": [
|
||||||
],
|
"web.config"
|
||||||
|
]
|
||||||
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {},
|
"net451": {},
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
|
|
@ -27,7 +29,7 @@
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"type": "platform"
|
"type": "platform"
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue