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.
26 lines
1.3 KiB
26 lines
1.3 KiB
4 months ago
|
<?xml version="1.0"?>
|
||
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||
|
<Fragment>
|
||
|
<PackageGroup Id="tools">
|
||
|
<MsiPackage Id="tools_AllUsers"
|
||
|
SourceFile="tools.msi"
|
||
|
Compressed="$(var.CompressMSI)"
|
||
|
DownloadUrl="$(var.DownloadUrl)"
|
||
|
ForcePerMachine="yes"
|
||
|
InstallCondition="InstallAllUsers and Include_tools and not LauncherOnly">
|
||
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
||
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
||
|
</MsiPackage>
|
||
|
|
||
|
<MsiPackage Id="tools_JustForMe"
|
||
|
SourceFile="tools.msi"
|
||
|
Compressed="$(var.CompressMSI)"
|
||
|
DownloadUrl="$(var.DownloadUrl)"
|
||
|
ForcePerMachine="no"
|
||
|
InstallCondition="not InstallAllUsers and Include_tools and not LauncherOnly">
|
||
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
||
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
||
|
</MsiPackage>
|
||
|
</PackageGroup>
|
||
|
</Fragment>
|
||
|
</Wix>
|