2015-02-06 02:08:48 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
|
|
<Fragment>
|
|
|
|
<PackageGroup Id="exe">
|
|
|
|
<MsiPackage Id="exe_AllUsers"
|
|
|
|
SourceFile="exe.msi"
|
|
|
|
ForcePerMachine="yes"
|
|
|
|
Compressed="$(var.CompressMSI)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
2015-05-03 18:54:32 -03:00
|
|
|
EnableFeatureSelection="yes"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="InstallAllUsers and (Include_exe or Include_launcher or Include_pip) and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
<MsiPackage Id="exe_AllUsers_pdb"
|
|
|
|
SourceFile="exe_pdb.msi"
|
|
|
|
ForcePerMachine="yes"
|
|
|
|
Compressed="$(var.CompressPDB)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="InstallAllUsers and (Include_exe or Include_launcher or Include_pip) and Include_symbols and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
<MsiPackage Id="exe_AllUsers_d"
|
|
|
|
SourceFile="exe_d.msi"
|
|
|
|
ForcePerMachine="yes"
|
|
|
|
Compressed="$(var.CompressMSI_D)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="InstallAllUsers and (Include_exe or Include_launcher or Include_pip) and Include_debug and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
|
|
|
|
<MsiPackage Id="exe_JustForMe"
|
|
|
|
SourceFile="exe.msi"
|
|
|
|
ForcePerMachine="no"
|
|
|
|
Compressed="$(var.CompressMSI)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
2015-05-03 18:54:32 -03:00
|
|
|
EnableFeatureSelection="yes"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="not InstallAllUsers and (Include_exe or Include_launcher or Include_pip) and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
<MsiPackage Id="exe_JustForMe_pdb"
|
|
|
|
SourceFile="exe_pdb.msi"
|
|
|
|
ForcePerMachine="no"
|
|
|
|
Compressed="$(var.CompressPDB)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="not InstallAllUsers and (Include_exe or Include_launcher or Include_pip) and Include_symbols and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
<MsiPackage Id="exe_JustForMe_d"
|
|
|
|
SourceFile="exe_d.msi"
|
|
|
|
ForcePerMachine="no"
|
|
|
|
Compressed="$(var.CompressMSI_D)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="not InstallAllUsers and (Include_exe or Include_launcher or Include_pip) and Include_debug and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
</PackageGroup>
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|