[Fixes #656] 'dotnet run' does not work on MusicStore app
This commit is contained in:
commit
9d3f2c4803
|
|
@ -5,23 +5,34 @@
|
|||
"description": "Music store application on ASP.NET 5",
|
||||
"version": "1.0.0-*",
|
||||
"buildOptions": {
|
||||
"emitEntryPoint": true,
|
||||
"warningsAsErrors": true,
|
||||
"define": [
|
||||
"DEMO",
|
||||
"TESTING"
|
||||
],
|
||||
"preserveCompilationContext": true
|
||||
},
|
||||
"compile": [
|
||||
"../../shared/**/*.cs",
|
||||
"../MusicStore/**/*.cs"
|
||||
],
|
||||
"compile": {
|
||||
"exclude": [
|
||||
"../MusicStore/Program.cs",
|
||||
"../MusicStore/bin",
|
||||
"../MusicStore/obj"
|
||||
],
|
||||
"include": [
|
||||
"../../shared/**/*.cs",
|
||||
"../MusicStore/**/*.cs"
|
||||
]
|
||||
},
|
||||
"copyToOutput": {
|
||||
"include": [
|
||||
"Areas",
|
||||
"Views",
|
||||
"wwwroot",
|
||||
"config.json",
|
||||
"web.config"
|
||||
]
|
||||
},
|
||||
"define": [
|
||||
"DEMO",
|
||||
"TESTING"
|
||||
],
|
||||
"emitEntryPoint": true,
|
||||
"preserveCompilationContext": true,
|
||||
"warningsAsErrors": true
|
||||
},
|
||||
"publishOptions": {
|
||||
"include": [
|
||||
"Areas",
|
||||
|
|
|
|||
|
|
@ -5,20 +5,28 @@
|
|||
"description": "Music store application on ASP.NET 5",
|
||||
"version": "1.0.0-*",
|
||||
"buildOptions": {
|
||||
"emitEntryPoint": true,
|
||||
"warningsAsErrors": true,
|
||||
"compile": {
|
||||
"include": [
|
||||
"../../shared/**/*.cs"
|
||||
]
|
||||
},
|
||||
"copyToOutput": {
|
||||
"include": [
|
||||
"Areas",
|
||||
"Views",
|
||||
"wwwroot",
|
||||
"config.json",
|
||||
"web.config"
|
||||
]
|
||||
},
|
||||
"define": [
|
||||
"DEMO",
|
||||
"TESTING"
|
||||
],
|
||||
"preserveCompilationContext": true
|
||||
"emitEntryPoint": true,
|
||||
"preserveCompilationContext": true,
|
||||
"warningsAsErrors": true
|
||||
},
|
||||
"commands": {
|
||||
"web": "MusicStore"
|
||||
},
|
||||
"compile": [
|
||||
"../../shared/**/*.cs"
|
||||
],
|
||||
"publishOptions": {
|
||||
"include": [
|
||||
"Areas",
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
{
|
||||
"buildOptions": {
|
||||
"warningsAsErrors": true
|
||||
},
|
||||
"compile": [
|
||||
"warningsAsErrors": true,
|
||||
"compile": {
|
||||
"include": [
|
||||
"../../shared/**/*.cs"
|
||||
],
|
||||
]
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"dotnet-test-xunit": "1.0.0-*",
|
||||
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
|
||||
|
|
|
|||
Loading…
Reference in New Issue