mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
Changed the build versioning to use an incrementing build version per build (and revision version per release build) as per https://stackoverflow.com/questions/826777/how-to-have-an-auto-incrementing-version-number-visual-studio. This uses an AssemblyInfo.tt T4 template to customise the versioning so that the application version can be set using the AssemblyVersion variable within the Visual Studio application properties. This makes it dead easy to change! The Wix Program.wxs was also changed to use that new 4 digit version number as the versioning, which should help immensely with beta testing updates. No more asking people to uninstall the previous version as the new build will automatically upgrade the earlier version!
19 lines
631 B
XML
19 lines
631 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Include>
|
|
<!--
|
|
Upgrade code HAS to be the same for all updates.
|
|
Once you've chosen it don't change it.
|
|
-->
|
|
<?define UpgradeCode="33E22B4C-982F-4B02-A3DE-085693742DB5" ?>
|
|
<!--
|
|
Path to the resources directory. resources don't really need to be included
|
|
in the project structure but I like to include them for for clarity
|
|
-->
|
|
<?define ResourcesDir="$(var.ProjectDir)Resources" ?>
|
|
<!--
|
|
The name of your application exe file. This will be used to kill the process when updating
|
|
and creating the desktop shortcut
|
|
-->
|
|
<?define ExeProcessName="DisplayMagician" ?>
|
|
|
|
</Include> |