Skip to content
Snippets Groups Projects
Unverified Commit 856f4c60 authored by Kaleb Luedtke's avatar Kaleb Luedtke
Browse files

Set extra version number when building MSI

* Use the @VERSION_EXTRA@ which is used in the exe build in place of the
  static '0'
* Change the Display Name in appwiz.cpl to be just the product name,
  matching the exe build
parent 5b4e2add
No related branches found
No related tags found
No related merge requests found
Pipeline #214584 passed with stage
in 16 minutes and 56 seconds
......@@ -10,8 +10,9 @@
<?define VerMajor = "@VERSION_MAJOR@" ?>
<?define VerMinor = "@VERSION_MINOR@" ?>
<?define VerPatch = "@VERSION_REVISION@" ?>
<?define VerExtra = "@VERSION_EXTRA@" ?>
<?define Version = "$(var.VerMajor).$(var.VerMinor).$(var.VerPatch)" ?>
<?define VersionLong = "$(var.Version).0" ?>
<?define VersionLong = "$(var.Version).$(var.VerExtra)" ?>
<?define SourceDir = "vlc-@VERSION@" ?>
<!--<?define PluginsPath = "$(var.BinPath)\plugins" ?>
......
......@@ -25,7 +25,7 @@
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product
Id='*'
Name='$(var.ProductName) $(var.Version) ($(var.PlatformString))'
Name='$(var.ProductName)'
Language='1033'
Version='$(var.VersionLong)'
Manufacturer='$(var.Manufacturer)'
......@@ -400,5 +400,3 @@
<ProgressText Action="RegisterAxvlc">Registering DirectX plugin...</ProgressText>
<ProgressText Action="UnregisterAxvlc">Removing DirectX plugin...</ProgressText>
-->
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment