Fix schema change build warnings

This commit is contained in:
Pranav K 2016-05-18 21:32:57 -07:00
parent 3cdaa8b2ab
commit 367eec812c
2 changed files with 16 additions and 27 deletions

View File

@ -3,6 +3,12 @@
"buildOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"publishOptions": {
"exclude": [
"**.user",
"**.vspscc"
]
},
"dependencies": { "dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*", "Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.HttpOverrides": "1.0.0-*", "Microsoft.AspNetCore.HttpOverrides": "1.0.0-*",
@ -24,13 +30,5 @@
} }
} }
} }
}, }
"exclude": [
"wwwroot",
"node_modules"
],
"publishExclude": [
"**.user",
"**.vspscc"
]
} }

View File

@ -8,15 +8,9 @@
"buildOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"commands": {
"web": "ResponseBufferingSample"
},
"frameworks": { "frameworks": {
"net451": {}, "net451": {},
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": [
"dnxcore50"
],
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {
"version": "1.0.0-*", "version": "1.0.0-*",
@ -25,16 +19,13 @@
} }
} }
}, },
"publishExclude": [ "publish": {
"node_modules", "exclude": [
"bower_components", "node_modules",
"**.xproj", "bower_components",
"**.user", "**.xproj",
"**.vspscc" "**.user",
], "**.vspscc"
"exclude": [ ]
"wwwroot", }
"node_modules",
"bower_components"
]
} }