mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
Amend all templates' project.json files to match current "yo aspnet" template content (plus the SPA-specific stuff)
This commit is contained in:
@@ -1,33 +1,37 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
|
||||||
"buildOptions": {
|
|
||||||
"emitEntryPoint": true,
|
|
||||||
"preserveCompilationContext": true
|
|
||||||
},
|
|
||||||
"runtimeOptions": {
|
|
||||||
"gcServer": true
|
|
||||||
},
|
|
||||||
"tooling": {
|
|
||||||
"defaultNamespace": "WebApplicationBasic"
|
|
||||||
},
|
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"version": "1.0.0-rc2-*",
|
"version": "1.0.0-rc2-3002702",
|
||||||
"type": "platform"
|
"type": "platform"
|
||||||
},
|
},
|
||||||
"Microsoft.AspNetCore.Diagnostics": "1.0.0-*",
|
"Microsoft.AspNetCore.AngularServices": "1.0.0-*",
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
|
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
|
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*",
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
|
"version": "1.0.0-preview1-final",
|
||||||
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
|
"type": "build"
|
||||||
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
|
||||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "1.0.0-*",
|
|
||||||
"Microsoft.AspNetCore.AngularServices": "1.0.0-*"
|
|
||||||
},
|
},
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
|
||||||
|
},
|
||||||
|
|
||||||
|
"tools": {
|
||||||
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
@@ -37,14 +41,30 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"buildOptions": {
|
||||||
|
"emitEntryPoint": true,
|
||||||
|
"preserveCompilationContext": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"runtimeOptions": {
|
||||||
|
"gcServer": true
|
||||||
|
},
|
||||||
|
|
||||||
"publishOptions": {
|
"publishOptions": {
|
||||||
"exclude": [
|
"include": [
|
||||||
"node_modules",
|
"appsettings.json",
|
||||||
"**.xproj",
|
"ClientApp",
|
||||||
"**.user",
|
"typings",
|
||||||
"**.vspscc"
|
"Views",
|
||||||
|
"tsconfig.json",
|
||||||
|
"tsd.json",
|
||||||
|
"web.config",
|
||||||
|
"webpack.*.js",
|
||||||
|
"wwwroot"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": [
|
"prepublish": [
|
||||||
"npm install",
|
"npm install",
|
||||||
@@ -52,5 +72,9 @@
|
|||||||
"node node_modules/webpack/bin/webpack.js"
|
"node node_modules/webpack/bin/webpack.js"
|
||||||
],
|
],
|
||||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||||
|
},
|
||||||
|
|
||||||
|
"tooling": {
|
||||||
|
"defaultNamespace": "WebApplicationBasic"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,33 +1,37 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
|
||||||
"buildOptions": {
|
|
||||||
"emitEntryPoint": true,
|
|
||||||
"preserveCompilationContext": true
|
|
||||||
},
|
|
||||||
"runtimeOptions": {
|
|
||||||
"gcServer": true
|
|
||||||
},
|
|
||||||
"tooling": {
|
|
||||||
"defaultNamespace": "WebApplicationBasic"
|
|
||||||
},
|
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"version": "1.0.0-rc2-*",
|
"version": "1.0.0-rc2-3002702",
|
||||||
"type": "platform"
|
"type": "platform"
|
||||||
},
|
},
|
||||||
"Microsoft.AspNetCore.Diagnostics": "1.0.0-*",
|
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
|
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*",
|
"version": "1.0.0-preview1-final",
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
|
"type": "build"
|
||||||
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
|
||||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "1.0.0-*",
|
|
||||||
"Microsoft.AspNetCore.SpaServices": "1.0.0-*"
|
|
||||||
},
|
},
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.SpaServices": "1.0.0-*",
|
||||||
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
|
||||||
|
},
|
||||||
|
|
||||||
|
"tools": {
|
||||||
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
@@ -37,14 +41,30 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"buildOptions": {
|
||||||
|
"emitEntryPoint": true,
|
||||||
|
"preserveCompilationContext": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"runtimeOptions": {
|
||||||
|
"gcServer": true
|
||||||
|
},
|
||||||
|
|
||||||
"publishOptions": {
|
"publishOptions": {
|
||||||
"exclude": [
|
"include": [
|
||||||
"node_modules",
|
"appsettings.json",
|
||||||
"**.xproj",
|
"ClientApp",
|
||||||
"**.user",
|
"typings",
|
||||||
"**.vspscc"
|
"Views",
|
||||||
|
"tsconfig.json",
|
||||||
|
"tsd.json",
|
||||||
|
"web.config",
|
||||||
|
"webpack.*.js",
|
||||||
|
"wwwroot"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": [
|
"prepublish": [
|
||||||
"npm install",
|
"npm install",
|
||||||
@@ -52,5 +72,9 @@
|
|||||||
"node node_modules/webpack/bin/webpack.js"
|
"node node_modules/webpack/bin/webpack.js"
|
||||||
],
|
],
|
||||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||||
|
},
|
||||||
|
|
||||||
|
"tooling": {
|
||||||
|
"defaultNamespace": "WebApplicationBasic"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,33 +1,37 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
|
||||||
"buildOptions": {
|
|
||||||
"emitEntryPoint": true,
|
|
||||||
"preserveCompilationContext": true
|
|
||||||
},
|
|
||||||
"runtimeOptions": {
|
|
||||||
"gcServer": true
|
|
||||||
},
|
|
||||||
"tooling": {
|
|
||||||
"defaultNamespace": "WebApplicationBasic"
|
|
||||||
},
|
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"version": "1.0.0-rc2-*",
|
"version": "1.0.0-rc2-3002702",
|
||||||
"type": "platform"
|
"type": "platform"
|
||||||
},
|
},
|
||||||
"Microsoft.AspNetCore.Diagnostics": "1.0.0-*",
|
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
|
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*",
|
"version": "1.0.0-preview1-final",
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
|
"type": "build"
|
||||||
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
|
||||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "1.0.0-*",
|
|
||||||
"Microsoft.AspNetCore.ReactServices": "1.0.0-*"
|
|
||||||
},
|
},
|
||||||
|
"Microsoft.AspNetCore.ReactServices": "1.0.0-*",
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
|
||||||
|
},
|
||||||
|
|
||||||
|
"tools": {
|
||||||
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
@@ -37,14 +41,30 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"buildOptions": {
|
||||||
|
"emitEntryPoint": true,
|
||||||
|
"preserveCompilationContext": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"runtimeOptions": {
|
||||||
|
"gcServer": true
|
||||||
|
},
|
||||||
|
|
||||||
"publishOptions": {
|
"publishOptions": {
|
||||||
"exclude": [
|
"include": [
|
||||||
"node_modules",
|
"appsettings.json",
|
||||||
"**.xproj",
|
"ClientApp",
|
||||||
"**.user",
|
"typings",
|
||||||
"**.vspscc"
|
"Views",
|
||||||
|
"tsconfig.json",
|
||||||
|
"tsd.json",
|
||||||
|
"web.config",
|
||||||
|
"webpack.*.js",
|
||||||
|
"wwwroot"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": [
|
"prepublish": [
|
||||||
"npm install",
|
"npm install",
|
||||||
@@ -52,5 +72,9 @@
|
|||||||
"node node_modules/webpack/bin/webpack.js"
|
"node node_modules/webpack/bin/webpack.js"
|
||||||
],
|
],
|
||||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||||
|
},
|
||||||
|
|
||||||
|
"tooling": {
|
||||||
|
"defaultNamespace": "WebApplicationBasic"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,33 +1,37 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
|
||||||
"buildOptions": {
|
|
||||||
"emitEntryPoint": true,
|
|
||||||
"preserveCompilationContext": true
|
|
||||||
},
|
|
||||||
"runtimeOptions": {
|
|
||||||
"gcServer": true
|
|
||||||
},
|
|
||||||
"tooling": {
|
|
||||||
"defaultNamespace": "WebApplicationBasic"
|
|
||||||
},
|
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"version": "1.0.0-rc2-*",
|
"version": "1.0.0-rc2-3002702",
|
||||||
"type": "platform"
|
"type": "platform"
|
||||||
},
|
},
|
||||||
"Microsoft.AspNetCore.Diagnostics": "1.0.0-*",
|
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
|
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*",
|
"version": "1.0.0-preview1-final",
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
|
"type": "build"
|
||||||
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
|
||||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "1.0.0-*",
|
|
||||||
"Microsoft.AspNetCore.ReactServices": "1.0.0-*"
|
|
||||||
},
|
},
|
||||||
|
"Microsoft.AspNetCore.ReactServices": "1.0.0-*",
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
|
||||||
|
},
|
||||||
|
|
||||||
|
"tools": {
|
||||||
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
@@ -37,14 +41,30 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"buildOptions": {
|
||||||
|
"emitEntryPoint": true,
|
||||||
|
"preserveCompilationContext": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"runtimeOptions": {
|
||||||
|
"gcServer": true
|
||||||
|
},
|
||||||
|
|
||||||
"publishOptions": {
|
"publishOptions": {
|
||||||
"exclude": [
|
"include": [
|
||||||
"node_modules",
|
"appsettings.json",
|
||||||
"**.xproj",
|
"ClientApp",
|
||||||
"**.user",
|
"typings",
|
||||||
"**.vspscc"
|
"Views",
|
||||||
|
"tsconfig.json",
|
||||||
|
"tsd.json",
|
||||||
|
"web.config",
|
||||||
|
"webpack.*.js",
|
||||||
|
"wwwroot"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": [
|
"prepublish": [
|
||||||
"npm install",
|
"npm install",
|
||||||
@@ -52,5 +72,9 @@
|
|||||||
"node node_modules/webpack/bin/webpack.js"
|
"node node_modules/webpack/bin/webpack.js"
|
||||||
],
|
],
|
||||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||||
|
},
|
||||||
|
|
||||||
|
"tooling": {
|
||||||
|
"defaultNamespace": "WebApplicationBasic"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,32 +1,36 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
|
||||||
"buildOptions": {
|
|
||||||
"emitEntryPoint": true,
|
|
||||||
"preserveCompilationContext": true
|
|
||||||
},
|
|
||||||
"runtimeOptions": {
|
|
||||||
"gcServer": true
|
|
||||||
},
|
|
||||||
"tooling": {
|
|
||||||
"defaultNamespace": "WebApplicationBasic"
|
|
||||||
},
|
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"version": "1.0.0-rc2-*",
|
"version": "1.0.0-rc2-3002702",
|
||||||
"type": "platform"
|
"type": "platform"
|
||||||
},
|
},
|
||||||
"Microsoft.AspNetCore.Diagnostics": "1.0.0-*",
|
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
|
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
|
||||||
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*",
|
"version": "1.0.0-preview1-final",
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
|
"type": "build"
|
||||||
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
|
||||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "1.0.0-*"
|
|
||||||
},
|
},
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
|
||||||
|
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
|
||||||
|
},
|
||||||
|
|
||||||
|
"tools": {
|
||||||
|
"Microsoft.AspNetCore.Razor.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
|
||||||
|
"version": "1.0.0-preview1-final",
|
||||||
|
"imports": "portable-net45+win8+dnxcore50"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
@@ -36,14 +40,25 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"buildOptions": {
|
||||||
|
"emitEntryPoint": true,
|
||||||
|
"preserveCompilationContext": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"runtimeOptions": {
|
||||||
|
"gcServer": true
|
||||||
|
},
|
||||||
|
|
||||||
"publishOptions": {
|
"publishOptions": {
|
||||||
"exclude": [
|
"include": [
|
||||||
"node_modules",
|
"appsettings.json",
|
||||||
"**.xproj",
|
"Views",
|
||||||
"**.user",
|
"web.config",
|
||||||
"**.vspscc"
|
"wwwroot"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": [
|
"prepublish": [
|
||||||
"npm install",
|
"npm install",
|
||||||
@@ -51,5 +66,9 @@
|
|||||||
"node node_modules/webpack/bin/webpack.js"
|
"node node_modules/webpack/bin/webpack.js"
|
||||||
],
|
],
|
||||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||||
|
},
|
||||||
|
|
||||||
|
"tooling": {
|
||||||
|
"defaultNamespace": "WebApplicationBasic"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user