Browse Source

Ensure builds have unique package GUIDs (#11703)

John Luo 6 years ago
parent
commit
ef19361731
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Installers/Windows/Wix.targets

+ 1 - 1
src/Installers/Windows/Wix.targets

@@ -21,7 +21,7 @@
   </PropertyGroup>
 
   <PropertyGroup>
-    <GuidInputs>$(Version);$(Platform)</GuidInputs>
+    <GuidInputs>$(Version);$(Platform);(VersionSuffix)</GuidInputs>
   </PropertyGroup>
 
   <Target Name="GenerateGUIDs" BeforeTargets="BeforeBuild" DependsOnTargets="_GeneratePackageGuids;_GenerateBundleGuids" Condition=" '$(DisableGuidGeneration)' != 'true' " />