diff --git a/src/MusicStore.Spa/project.json b/src/MusicStore.Spa/project.json index bbf6c6d10e..3cfac1bfbb 100644 --- a/src/MusicStore.Spa/project.json +++ b/src/MusicStore.Spa/project.json @@ -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" ], diff --git a/src/MusicStore/project.json b/src/MusicStore/project.json index f4e5ae0b0d..4f17f0c63a 100644 --- a/src/MusicStore/project.json +++ b/src/MusicStore/project.json @@ -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-*", diff --git a/test/E2ETests/PublishAndRunTests.cs b/test/E2ETests/PublishAndRunTests.cs index 44879142f2..f097a70fe5 100644 --- a/test/E2ETests/PublishAndRunTests.cs +++ b/test/E2ETests/PublishAndRunTests.cs @@ -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"); } }