aspnetcore/test/WebSites/RazorWebSite/project.json

54 lines
1.3 KiB
JSON

{
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true,
"embed": {
"include": "EmbeddedViews/**"
}
},
"publishOptions": {
"include": [
"Views",
"Shared-Views",
"web.config"
]
},
"dependencies": {
"Microsoft.AspNetCore.Mvc": "1.2.0-*",
"Microsoft.AspNetCore.Mvc.TestConfiguration": {
"target": "project"
},
"Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.2.0-*",
"Microsoft.Extensions.FileProviders.Embedded": "1.2.0-*"
},
"frameworks": {
"net451": {
"buildOptions": {
"define": [
"NET451_CUSTOM_DEFINE"
]
}
},
"netcoreapp1.1": {
"buildOptions": {
"define": [
"NETCOREAPP1_1_CUSTOM_DEFINE"
]
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.2.0-*",
"type": "platform"
}
}
}
},
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final"
},
"scripts": {
"postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
}
}