summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrakeCS.csproj
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-04-02 21:02:57 +0000
committersr55 <[email protected]>2010-04-02 21:02:57 +0000
commitfc299fb336fa32722f04e529e987c27d67dddb26 (patch)
tree0135ede70dea223247bc910a4dd8283db75542b9 /win/C#/HandBrakeCS.csproj
parent13f34d49fab6f7e976f824ef0d6673bd6d9c2875 (diff)
WinGui:
- Added a new NightlyBuild Build Configuration. - Updated "Install" target so you now only need to provide HandBrakeCLI.exe and it's dll. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3194 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrakeCS.csproj')
-rw-r--r--win/C#/HandBrakeCS.csproj31
1 files changed, 25 insertions, 6 deletions
diff --git a/win/C#/HandBrakeCS.csproj b/win/C#/HandBrakeCS.csproj
index 84e753268..89e340376 100644
--- a/win/C#/HandBrakeCS.csproj
+++ b/win/C#/HandBrakeCS.csproj
@@ -133,6 +133,12 @@
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
</PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'NightlyBuild|AnyCPU'">
+ <OutputPath>bin\NightlyBuild\</OutputPath>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'NightlyBuild|x86'">
+ <OutputPath>bin\x86\NightlyBuild\</OutputPath>
+ </PropertyGroup>
<ItemGroup>
<Reference Include="Growl.Connector, Version=2.0.0.0, Culture=neutral, PublicKeyToken=980c2339411be384, processorArchitecture=x86">
<SpecificVersion>False</SpecificVersion>
@@ -353,6 +359,7 @@
<DesignTime>True</DesignTime>
</Compile>
<None Include="app.config" />
+ <None Include="Installer\MakeNightly.nsi" />
<None Include="Installer\Installer.nsi" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
@@ -477,12 +484,24 @@
-->
<Import Project="$(ProgramFiles)\MSBuild\Microsoft\StyleCop\v4.3\Microsoft.StyleCop.targets" />
<PropertyGroup Condition=" '$(Configuration)' == 'Install' ">
-
<PostBuildEvent>
-cd ../../
-copy Installer\Installer.nsi bin\Install
-cd bin\Install
-makensis Installer.nsi
-</PostBuildEvent>
+ cd ../../
+ copy Installer\Installer.nsi bin\Install /Y
+ copy handbrakepineapple.ico bin\Install /Y
+ xcopy doc bin\Install\doc /I /Y
+ cd bin\Install
+ makensis Installer.nsi
+ </PostBuildEvent>
</PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)' == 'NightlyBuild' ">
+ <PostBuildEvent>
+ cd ../../
+ copy Installer\MakeNightly.nsi bin\NightlyBuild /Y
+ copy handbrakepineapple.ico bin\NightlyBuild /Y
+ xcopy doc bin\NightlyBuild\doc /I /Y
+ cd bin\NightlyBuild
+ makensis MakeNightly.nsi
+ </PostBuildEvent>
+ </PropertyGroup>
+
</Project> \ No newline at end of file