I'm creating a bundle for my installer, but I keep getting the following error message:
"This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package."
My installer works fine when I start it manually. Is there anything wrong with my bundle? I'm using WiX 3.7. Also, does the upgrade code in the bundle and the installer have to be the same?
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Bundle Name="Bootstrapper1" Version="$(var.Version)"
Manufacturer="$(var.CompanyName)"
UpgradeCode="$(var.ProductUpgradeCode)"
Copyright="Copyright© 2013"
Condition="((VersionNT >= v5.1) AND (ServicePackLevel >= 3)) OR
((VersionNT >= v5.2) AND (ServicePackLevel >= 2)) OR (VersionNT >= v6.0)">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />
<Chain>
<MsiPackage Id="Setup" Compressed="yes" SourceFile="$(var.Installer.TargetPath)"
Vital="yes">
<MsiProperty Name="INSTALLLOCATION" Value="[InstallFolder]" />
</MsiPackage>
</Chain>
</Bundle>
</Wix>