Skip to content

Commit

Permalink
corrected WiX configuration to build an in-place upgrade
Browse files Browse the repository at this point in the history
- version 4.0.2.2 and newer will now be installed on top of
  previous versions and not duplicating entries in Control Panel->Programs
  • Loading branch information
tporadowski committed Mar 26, 2018
1 parent c334dd6 commit bffbc45
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions msvs/msi/RedisMsi/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
Compressed="yes"
InstallScope="perMachine" />

<Upgrade Id="{05410198-7212-4FC4-B7C8-AFEFC3DA0FBC}">
<UpgradeVersion OnlyDetect="no" Property="PREVIOUSFOUND"
Minimum="3.2.100.0" IncludeMinimum="yes"
Maximum="99.0.0.0" IncludeMaximum="no" />
</Upgrade>

<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate EmbedCab="yes" />

Expand Down

0 comments on commit bffbc45

Please sign in to comment.