Change 'pack-exclude' to 'packExclude'
This commit is contained in:
parent
2766b3a4f0
commit
8d0c6052a7
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"webroot": "wwwroot",
|
||||
"exclude": [ "wwwroot/**/*.*", "bower_components/**/*.*", "node_modules/**/*.*", "grunt/**/*.*" ],
|
||||
"pack-exclude": [ "bower.json", "package.json", "gruntfile.js", "bower_components/**/*.*", "node_modules/**/*.*", "grunt/**/*.*" ],
|
||||
"packExclude": [ "bower.json", "package.json", "gruntfile.js", "bower_components/**/*.*", "node_modules/**/*.*", "grunt/**/*.*" ],
|
||||
"authors": [
|
||||
"Microsoft"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
"description": "Music store application on K",
|
||||
"version": "1.0.0-*",
|
||||
"compilationOptions": { "warningsAsErrors": true, "define": [ "DEMO", "TESTING" ] },
|
||||
"pack-exclude": "*.cmd",
|
||||
"packExclude": "*.cmd",
|
||||
"webroot": "wwwroot",
|
||||
"dependencies": {
|
||||
"Kestrel": "1.0.0-*",
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ namespace E2ETests
|
|||
{
|
||||
if (Directory.GetFiles(startParameters.ApplicationPath, "*.cmd", SearchOption.TopDirectoryOnly).Length > 0)
|
||||
{
|
||||
throw new Exception("pack-exclude parameter values are not honored");
|
||||
throw new Exception("packExclude parameter values are not honored");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue