Ayman Salah
Ayman Salah

Reputation: 1089

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 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

Answers (1)

BryanJ
BryanJ

Reputation: 8563

  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.

Upvotes: 1

Related Questions