Reputation: 1089
How can i include my program installer in the bootstrapper? i have this which installs the prerequisites only. i cant get to include my program as an installation msi file or w.e else it can be.
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Bundle UpgradeCode="fec4e00c-2691-4dfd-ade8-1a83d7d37d36" Version="1.0.0.0">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense"/>
<Chain>
<PackageGroupRef Id="Netfx4Full"/>
<PackageGroupRef Id="SQLPackage"/>
</Chain>
</Bundle>
Upvotes: 0
Views: 1008
Reputation: 8563
Setup Project
to get started.<MsiPackage>
element. You can insert it right after the prerequisites.Upvotes: 1