mirror of
https://github.com/ckaczor/WixBalExtensionExt.git
synced 2026-01-16 01:25:43 -05:00
Initial commit
This commit is contained in:
33
Examples/Bundle5.wxs
Normal file
33
Examples/Bundle5.wxs
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0"?>
|
||||
<!--
|
||||
This example demonstrates the RtfLicense UI built in to WixBalExtensionExt.
|
||||
|
||||
It also shows how to replace the standard logo with your own.
|
||||
-->
|
||||
<Wix RequiredVersion="3.7.1224.0"
|
||||
xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
||||
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"
|
||||
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||||
<Bundle Name="Sample Burn Installation" Version="$(bal.Version(1.0))" UpgradeCode="2C81F0BB-1891-4E83-B71A-5160BA33D985"
|
||||
Manufacturer="ACME"
|
||||
AboutUrl="http://wixtoolset.org">
|
||||
|
||||
<BootstrapperApplicationRef Id="WixExtendedBootstrapperApplication.RtfLicense" />
|
||||
<WixVariable Id="WixExtbaLicenseRtf" Value="Resource\License.rtf" />
|
||||
<WixVariable Id="WixExtbaLogo" Value="Resource\Logo.png" />
|
||||
|
||||
<Variable Name="InstallFolder" Type="string" Value="[ProgramFilesFolder]ACME" />
|
||||
|
||||
<Chain DisableSystemRestore="yes">
|
||||
<PackageGroupRef Id="NetFx40Redist" />
|
||||
<MsiPackage
|
||||
Id="Setup"
|
||||
Compressed="yes"
|
||||
SourceFile="Setup.msi"
|
||||
Vital="yes">
|
||||
<MsiProperty Name="APPLICATIONFOLDER" Value="[InstallFolder]" />
|
||||
</MsiPackage>
|
||||
</Chain>
|
||||
|
||||
</Bundle>
|
||||
</Wix>
|
||||
Reference in New Issue
Block a user