Why Does WiX v4 Not Detect an Upgrade? #8098
Unanswered
cornonthecobbs
asked this question in
Questions
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
In it's current state my WiX Installer has a Bundle project, with a Standard Bootstrapper Application, that references a single MSI project.
Once the Bundle is ran and installed, I bump the version of both projects from "1.0.0.0" to "1.0.1.0", build the Bundle project, and run the exe again.
For some reason WiX is unable to detect that this new exe is an upgrade. The log file shows that the Bundle and Package are both detected, but 'WixStdBAUpdateAvailable' evaluates to false. What am I missing?
Here is the log:

Here is the Bundle:
<Bundle Name="MAS-iX" Manufacturer="Makino Milling Machine Co" Version="1.0.0.0" UpgradeCode="c7bc7601-a842-4ec0-bf94-4b5c74a89c03"> <BootstrapperApplication> <bal:WixStandardBootstrapperApplication ShowVersion="true" Theme="hyperlinkLicense" ThemeFile="RtfLargeTheme.xml"/> </BootstrapperApplication> <Chain> <MsiPackage Name="Status Monitor" SourceFile="$(StatusMonitorInstaller.TargetPath)"> </MsiPackage> </Chain> </Bundle>
Here is the MSI Package:
Beta Was this translation helpful? Give feedback.
All reactions