only create release zips when building in release mode

This commit is contained in:
Jesse Plamondon-Willard 2017-07-28 00:45:36 -04:00
parent 8772991548
commit 0ac43b2541
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<DeployModFolderName>$(MSBuildProjectName)</DeployModFolderName>
<DeployModZipTo>$(SolutionDir)\_releases</DeployModZipTo>
<DeployModZipTo Condition="'$(Configuration)' == 'Release'">$(SolutionDir)\_releases</DeployModZipTo>
</PropertyGroup>
</Project>