Home | History | Annotate | Download | only in packagegroups
      1 <?xml version="1.0"?>
      2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
      3     <Fragment>
      4         <PackageGroup Id="launcher">
      5             <!-- The All Users launcher is always the 32-bit version -->
      6             <MsiPackage Id="launcher_AllUsers"
      7                         SourceFile="!(bindpath.build32)en-us\launcher.msi"
      8                         Compressed="$(var.CompressMSI)"
      9                         DownloadUrl="$(var.DownloadUrl)"
     10                         ForcePerMachine="yes"
     11                         EnableFeatureSelection="yes"
     12                         Permanent="yes"
     13                         Visible="yes"
     14                         InstallCondition="(InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not DetectedLauncher" />
     15 
     16             <MsiPackage Id="launcher_JustForMe"
     17                         SourceFile="!(bindpath.build32)en-us\launcher.msi"
     18                         Compressed="$(var.CompressMSI)"
     19                         DownloadUrl="$(var.DownloadUrl)"
     20                         ForcePerMachine="no"
     21                         EnableFeatureSelection="yes"
     22                         Permanent="yes"
     23                         Visible="yes"
     24                         InstallCondition="not (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not DetectedLauncher" />
     25         </PackageGroup>
     26     </Fragment>
     27 </Wix>