简体   繁体   中英

Include Project Into Wix Bundle Bootstrapper

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 we 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>
  1. You need to create the msi first. Here is an example . If using Visual Studio, you can create a new Setup Project to get started.
  2. Add the msi from the previous step using an <MsiPackage> element. You can insert it right after the prerequisites.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM