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": {
"emitEntryPoint": true
},
"publishOptions": {
"exclude": [
"**.user",
"**.vspscc"
]
},
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.HttpOverrides": "1.0.0-*",
@ -24,13 +30,5 @@
}
}
}
},
"exclude": [
"wwwroot",
"node_modules"
],
"publishExclude": [
"**.user",
"**.vspscc"
]
}
}

View File

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