mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 18:19:40 +00:00
81 lines
2.1 KiB
JSON
Executable File
81 lines
2.1 KiB
JSON
Executable File
{
|
|
"dependencies": {
|
|
"Microsoft.NETCore.App": {
|
|
"version": "1.0.1",
|
|
"type": "platform"
|
|
},
|
|
"Microsoft.AspNetCore.ReactServices": "1.0.0-*",
|
|
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
|
|
"Microsoft.AspNetCore.Mvc": "1.0.1",
|
|
"Microsoft.AspNetCore.Razor.Tools": {
|
|
"version": "1.0.0-preview2-final",
|
|
"type": "build"
|
|
},
|
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
|
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
|
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
|
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
|
|
"Microsoft.Extensions.Configuration.Json": "1.0.0",
|
|
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0",
|
|
"Microsoft.Extensions.Logging": "1.0.0",
|
|
"Microsoft.Extensions.Logging.Console": "1.0.0",
|
|
"Microsoft.Extensions.Logging.Debug": "1.0.0",
|
|
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0"
|
|
},
|
|
|
|
"tools": {
|
|
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
|
|
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
|
|
"Microsoft.DotNet.Watcher.Tools": "1.0.0-preview2-final"
|
|
},
|
|
|
|
"frameworks": {
|
|
"netcoreapp1.0": {
|
|
"imports": [
|
|
"dotnet5.6",
|
|
"portable-net45+win8"
|
|
]
|
|
}
|
|
},
|
|
|
|
"buildOptions": {
|
|
"emitEntryPoint": true,
|
|
"preserveCompilationContext": true,
|
|
"compile": {
|
|
"exclude": ["node_modules"]
|
|
}
|
|
},
|
|
|
|
"runtimeOptions": {
|
|
"configProperties": {
|
|
"System.GC.Server": true
|
|
}
|
|
},
|
|
|
|
"publishOptions": {
|
|
"include": [
|
|
"appsettings.json",
|
|
"node_modules",
|
|
"Views",
|
|
"web.config",
|
|
"wwwroot"
|
|
],
|
|
"exclude": [
|
|
"wwwroot/dist/*.map"
|
|
]
|
|
},
|
|
|
|
"scripts": {
|
|
"prepublish": [
|
|
"npm install",
|
|
"node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js --env.prod",
|
|
"node node_modules/webpack/bin/webpack.js --env.prod"
|
|
],
|
|
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
|
},
|
|
|
|
"tooling": {
|
|
"defaultNamespace": "WebApplicationBasic"
|
|
}
|
|
}
|