diff options
author | sr55 <[email protected]> | 2016-12-18 22:15:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-12-18 22:15:56 +0000 |
commit | a88b32e2375d90dfa92b952d70623486547f7c35 (patch) | |
tree | 7ef317dffd7813f2d5ed632a3e52b6d7f733f100 /win/CS/build.xml | |
parent | e2f915885842057d429954990d52da311f5c9582 (diff) |
WinGui: Update the VersionUtility class to work for official releases that are not from subversion.
Diffstat (limited to 'win/CS/build.xml')
-rw-r--r-- | win/CS/build.xml | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/win/CS/build.xml b/win/CS/build.xml index 60205971c..6333f6b2a 100644 --- a/win/CS/build.xml +++ b/win/CS/build.xml @@ -26,11 +26,11 @@ <!-- Dependencies -->
<PropertyGroup>
- <NightlyDependsOn>NightlyPreBuild;BuildRelease;NightlyPostBuild</NightlyDependsOn>
+ <NightlyDependsOn>BuildRelease;NightlyPostBuild</NightlyDependsOn>
</PropertyGroup>
<PropertyGroup>
- <InstallDependsOn>PreBuild;BuildRelease;ReleasePostBuild</InstallDependsOn>
+ <InstallDependsOn>BuildRelease;ReleasePostBuild</InstallDependsOn>
</PropertyGroup>
<!-- Builds /t: -->
@@ -46,21 +46,6 @@ </MSBuild>
</Target>
- <!-- Pre Build Events. You must do a full checkout as it takes the svn from the main directory. $(MSBuildProjectDirectory)\. is not used. -->
- <Target Name="NightlyPreBuild">
- <!--<Exec Command="subwcrev.exe ../../ $(MSBuildProjectDirectory)\HandBrakeWPF\Properties\AssemblyInfo.cs.Nightly.tmpl $(MSBuildProjectDirectory)\HandBrakeWPF\Properties\AssemblyInfo.cs" />
- <Exec Command="subwcrev.exe ../../ $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly.nsi.tmpl $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly.nsi" Condition="$(Platform) == 'x86'" />
- <Exec Command="subwcrev.exe ../../ $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly64.nsi.tmpl $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly64.nsi" Condition="$(Platform) == 'x64'" />
- <Exec Command="subwcrev.exe ../../ $(MSBuildProjectDirectory)\HandBrake.ApplicationServices\Properties\AssemblyInfo.cs.Nightly.tmpl $(MSBuildProjectDirectory)\HandBrake.ApplicationServices\Properties\AssemblyInfo.cs" />-->
- </Target>
-
- <Target Name="PreBuild">
- <!-- <Exec Command="subwcrev.exe ../../ $(MSBuildProjectDirectory)\HandBrakeWPF\Properties\AssemblyInfo.cs.tmpl $(MSBuildProjectDirectory)\HandBrakeWPF\Properties\AssemblyInfo.cs" />
- <Exec Command="subwcrev.exe ../../ $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly.nsi.tmpl $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly.nsi" Condition="$(Platform) == 'x86'" />
- <Exec Command="subwcrev.exe ../../ $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly64.nsi.tmpl $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly64.nsi" Condition="$(Platform) == 'x64'" />
- <Exec Command="subwcrev.exe ../../ $(MSBuildProjectDirectory)\HandBrake.ApplicationServices\Properties\AssemblyInfo.cs.tmpl $(MSBuildProjectDirectory)\HandBrake.ApplicationServices\Properties\AssemblyInfo.cs" />-->
- </Target>
-
<!-- Post Build Events -->
<Target Name="NightlyPostBuild">
<Exec Command="copy $(MSBuildProjectDirectory)\HandBrakeWPF\Installer\MakeNightly.nsi $(MSBuildProjectDirectory)\HandBrakeWPF\bin\x86\Release /Y" Condition="$(Platform) == 'x86'" />
|