DisplayMagician/DisplayMagicianBootstrapper/Bundle.wxs
Terry MacDonald 16ac2bb264 Added WiX Bootstrapper project (WIP)
This project will encapsulate the .Net web installer
and the DisplayMagician installer so that it installs
the .net 4.8 if it isn't already installed. Still not sure if
I will keep it. It is a partial work in progress.
2020-12-21 23:06:42 +13:00

26 lines
1011 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle Name="DisplayMagicianBootstrapper"
Version="0.2.0.0"
UpgradeCode="D965E245-6132-4760-AD2D-07CCC9FA98F9"
Manufacturer="!(loc.Manufacturer)"
HelpUrl="!(loc.HelpUrl)"
UpdateUrl="!(loc.UpdateUrl)"
AboutUrl="!(loc.AboutUrl)"
>
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />
<!-- Put in a restriction to only allow installation on Windows 10 or higher -->
<bal:Condition Message="This software can only be installed on Windows 10 or later (64-bit).">
<![CDATA[VersionNT64 >= 1000]]>
</bal:Condition>
<Chain>
<!-- TODO: Define the list of chained packages. -->
<MsiPackage SourceFile="$(var.DisplayMagicianSetup.TargetDir)DisplayMagicianSetup.msi" />
<MsiPackage SourceFile="$(var.DisplayMagicianSetup.TargetDir)DisplayMagicianSetup.msi" />
</Chain>
</Bundle>
</Wix>