WiX Toolset BootstrapperApplications extension
$ dotnet add package WixToolset.BootstrapperApplications.wixextThis WiX Extension provides the standard BootstrapperApplications provided by the WiX Toolset.
Web Site | Documentation | Issue Tracker | Discussions
To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an Open Source Maintenance Fee. While the source code is freely available under the terms of the LICENSE, this package and other aspects of the project require adherence to the Open Source Maintenance Fee EULA.
To pay the Maintenance Fee, become a Sponsor.
Add the WiX Extension as a PackageReference to your .wixproj:
<Project Sdk="WixToolset.Sdk/7.0.0">
<ItemGroup>
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" Version="7.0.0" />
</ItemGroup>
</Project>
Then add the namespace and bootstrapper application of choice:
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
<Bundle BundleId="AcmeCorp.Example" Name="Example Bundle" Version="0.0.0.1" Manufacturer="ACME Corporation">
<BootstrapperApplication>
<bal:WixStandardBootstrapperApplication LicenseUrl="http://wixtoolset.org/about/license/" Theme="hyperlinkLicense" />
</BootstrapperApplication>
</Bundle>
</Wix>