aspnetcore/samples/MusicStore.Standalone/project.json

91 lines
2.8 KiB
JSON

{
"authors": [
"Microsoft"
],
"description": "Music store application on ASP.NET Core",
"version": "1.2.0-*",
"buildOptions": {
"compile": {
"exclude": [
"../MusicStore/Program.cs",
"../MusicStore/bin",
"../MusicStore/obj"
],
"include": [
"../MusicStore/**/*.cs"
]
},
"copyToOutput": {
"mappings": {
"Areas/": "../MusicStore/Areas/**/*.cshtml",
"Views/": "../MusicStore/Views/**/*.cshtml",
"wwwroot/": "../MusicStore/wwwroot/",
"web.config": "../MusicStore/web.config",
"config.json": "../MusicStore/config.json",
"ForTesting/": "../MusicStore/ForTesting/**/*.json"
}
},
"define": [
"DEMO",
"TESTING"
],
"emitEntryPoint": true,
"preserveCompilationContext": true,
"warningsAsErrors": true
},
"publishOptions": {
"mappings": {
"Areas/": "../MusicStore/Areas/**/*.cshtml",
"Views/": "../MusicStore/Views/**/*.cshtml",
"wwwroot/": "../MusicStore/wwwroot/",
"web.config": "../MusicStore/web.config",
"config.json": "../MusicStore/config.json",
"ForTesting/": "../MusicStore/ForTesting/**/*.json"
}
},
"dependencies": {
"Microsoft.AspNetCore": "1.2.0-*",
"Microsoft.AspNetCore.AspNetCoreModule": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Cookies": "1.2.0-*",
"Microsoft.AspNetCore.Authentication.Facebook": "1.2.0-*",
"Microsoft.AspNetCore.Authentication.Google": "1.2.0-*",
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.2.0-*",
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.2.0-*",
"Microsoft.AspNetCore.Authentication.Twitter": "1.2.0-*",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.2.0-*",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.2.0-*",
"Microsoft.AspNetCore.Mvc": "1.2.0-*",
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.2.0-*",
"Microsoft.AspNetCore.Server.WebListener": "1.2.0-*",
"Microsoft.AspNetCore.Session": "1.2.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.2.0-*",
"Microsoft.EntityFrameworkCore.InMemory": "1.2.0-*",
"Microsoft.EntityFrameworkCore.SqlServer": "1.2.0-*",
"Microsoft.Extensions.Configuration.CommandLine": "1.2.0-*"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*"
}
}
}
},
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final"
},
"scripts": {
"postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
},
"runtimes": {
"win7-x64": {},
"win7-x86": {},
"osx.10.10-x64": {},
"osx.10.11-x64": {},
"ubuntu.14.04-x64": {},
"ubuntu.15.04-x64": {},
"centos.7-x64": {},
"rhel.7.2-x64": {}
}
}