From c862ecc36f693aa147c522ba6d484df98a6514a5 Mon Sep 17 00:00:00 2001 From: leekelleher Date: Wed, 13 Jan 2016 12:26:19 +0000 Subject: [PATCH] Fixes #319 - Grunt/MSBuild Sets the MSBuild project config from "Debug" to "Release". --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 019e965..2f8b117 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -125,7 +125,7 @@ module.exports = function(grunt) { expand: true }, dll: { - cwd: 'app/Umbraco/Umbraco.Archetype/bin/Debug/', + cwd: 'app/Umbraco/Umbraco.Archetype/bin/Release/', src: 'Archetype.dll', dest: '<%= dest %>/bin/', expand: true @@ -155,7 +155,7 @@ module.exports = function(grunt) { expand: true }, { - cwd: 'app/Umbraco/Archetype.Courier/bin/release/', + cwd: 'app/Umbraco/Archetype.Courier/bin/Release/', src: ['Archetype.Courier.dll'], dest: 'tmp/nuget_courier/lib/net40', expand: true @@ -308,7 +308,7 @@ module.exports = function(grunt) { dist: { src: ['app/Umbraco/Umbraco.Archetype/Archetype.Umbraco.csproj','app/Umbraco/Archetype.Courier/Archetype.Courier.csproj'], options: { - projectConfiguration: 'Debug', + projectConfiguration: 'Release', targets: ['Clean', 'Rebuild'], } }