From 8d0c6052a7dc518c1ecccd57524894601a7f184f Mon Sep 17 00:00:00 2001 From: Wei Wang Date: Tue, 14 Oct 2014 16:15:20 -0700 Subject: [PATCH] Change 'pack-exclude' to 'packExclude' --- src/MusicStore.Spa/project.json | 2 +- src/MusicStore/project.json | 2 +- test/E2ETests/PublishAndRunTests.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"); } }