We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
AllowSameVersionUpgrades
1 parent aa0828f commit dd5e1edCopy full SHA for dd5e1ed
2 files changed
.changes/bundler-msi-upgrade-same-version.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-bundler": patch
3
4
+
5
+Change the WiX config to allow upgrading installation with same version instead of duplicating the application.
tooling/bundler/src/bundle/windows/templates/main.wxs
@@ -26,9 +26,8 @@
26
InstallScope="perMachine"
27
SummaryCodepage="{{ascii_codepage}}"/>
28
29
- <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed."
30
- MigrateFeatures="yes" />
31
-
+ <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed."
+ AllowSameVersionUpgrades="yes" />
32
33
<Media Id="1" Cabinet="app.cab" EmbedCab="yes" />
34
0 commit comments