servo/support/windows/Servo.wxs
Alex Touchet dcedfab44f
Attempt to link to MPL-2.0 license page in Windows installer (#33711)
Signed-off-by: Alex Touchet <26315797+atouchet@users.noreply.github.com>
2024-10-08 09:24:23 +00:00

19 lines
675 B
XML

<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle Name="Servo"
Version="1.0"
UpgradeCode="91b09c7e-6c0d-4166-b806-1dc724acf728">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
<bal:WixStandardBootstrapperApplication
LicenseUrl="https://www.mozilla.org/en-US/MPL/2.0/"
/>
</BootstrapperApplicationRef>
<Chain>
<MsiPackage
SourceFile="Installer.msi"
Compressed="yes"
DisplayName="Servo"
ForcePerMachine="yes"/>
</Chain>
</Bundle>
</Wix>