summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-04-02 20:44:09 +0000
committersr55 <[email protected]>2010-04-02 20:44:09 +0000
commit13f34d49fab6f7e976f824ef0d6673bd6d9c2875 (patch)
tree0da278e450500fecc79017769301e45a1620f577
parentf366f273eb4ea3671e582f8b6c01051ef3eb9bac (diff)
WinGui:
- Fix a small error in the build config. Don't run makensis for non install configs git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3193 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--win/C#/HandBrakeCS.csproj9
1 files changed, 6 insertions, 3 deletions
diff --git a/win/C#/HandBrakeCS.csproj b/win/C#/HandBrakeCS.csproj
index a28bdc3a5..84e753268 100644
--- a/win/C#/HandBrakeCS.csproj
+++ b/win/C#/HandBrakeCS.csproj
@@ -476,10 +476,13 @@
</Target>
-->
<Import Project="$(ProgramFiles)\MSBuild\Microsoft\StyleCop\v4.3\Microsoft.StyleCop.targets" />
- <PropertyGroup>
- <PostBuildEvent>cd ../../
+ <PropertyGroup Condition=" '$(Configuration)' == 'Install' ">
+
+ <PostBuildEvent>
+cd ../../
copy Installer\Installer.nsi bin\Install
cd bin\Install
-makensis Installer.nsi</PostBuildEvent>
+makensis Installer.nsi
+</PostBuildEvent>
</PropertyGroup>
</Project> \ No newline at end of file