You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.3 KiB
27 lines
1.3 KiB
4 months ago
|
<?xml version="1.0"?>
|
||
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||
|
<Fragment>
|
||
|
<PackageGroup Id="launcher">
|
||
|
<!-- The All Users launcher is always the 32-bit version -->
|
||
|
<MsiPackage Id="launcher_AllUsers"
|
||
|
SourceFile="!(bindpath.build32)en-us\launcher.msi"
|
||
|
Compressed="$(var.CompressMSI)"
|
||
|
DownloadUrl="$(var.DownloadUrl)"
|
||
|
ForcePerMachine="yes"
|
||
|
EnableFeatureSelection="yes"
|
||
|
Permanent="yes"
|
||
|
Visible="yes"
|
||
|
InstallCondition="(InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not DetectedLauncher" />
|
||
|
|
||
|
<MsiPackage Id="launcher_JustForMe"
|
||
|
SourceFile="!(bindpath.build32)en-us\launcher.msi"
|
||
|
Compressed="$(var.CompressMSI)"
|
||
|
DownloadUrl="$(var.DownloadUrl)"
|
||
|
ForcePerMachine="no"
|
||
|
EnableFeatureSelection="yes"
|
||
|
Permanent="yes"
|
||
|
Visible="yes"
|
||
|
InstallCondition="not (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not DetectedLauncher" />
|
||
|
</PackageGroup>
|
||
|
</Fragment>
|
||
|
</Wix>
|