1<?xml version="1.0"?> 2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 3 <Fragment> 4 <PackageGroup Id="crt"> 5 <PackageGroupRef Id="crt_14.0_v6.0" /> 6 <PackageGroupRef Id="crt_14.0_v6.1" /> 7 <PackageGroupRef Id="crt_14.0_v6.2" /> 8 <PackageGroupRef Id="crt_14.0_v6.3" /> 9 </PackageGroup> 10 </Fragment> 11 12 <?foreach ver in v6.0;v6.1;v6.2;v6.3 ?> 13 <?if "$(var.ver)" = "v6.0" ?> 14 <?define msuver=6.0 ?> 15 <?elseif "$(var.ver)" = "v6.1" ?> 16 <?define msuver=6.1 ?> 17 <?elseif "$(var.ver)" = "v6.2" ?> 18 <?define msuver=8-RT ?> 19 <?elseif "$(var.ver)" = "v6.3" ?> 20 <?define msuver=8.1 ?> 21 <?else ?> 22 <?error unknown version $(var.ver) ?> 23 <?endif ?> 24 25 <Fragment> 26 <PackageGroup Id="crt_14.0_$(var.ver)"> 27 <MsuPackage Id="crt_14.0_$(var.ver)_x86" 28 KB="2999226" 29 SourceFile="!(bindpath.redist)\Windows$(var.msuver)-KB2999226-x86.msu" 30 DisplayName="!(loc.CRTDescription)" 31 Description="!(loc.CRTDescription)" 32 Compressed="$(var.CompressMSI)" 33 DownloadUrl="$(var.DownloadUrl)" 34 InstallCondition="not CRTInstalled and VersionNT = $(var.ver) and not VersionNT64 and (Include_core or Include_exe or Include_launcher or Include_pip) and not LauncherOnly" /> 35 36 <MsuPackage Id="crt_14.0_$(var.ver)_x64" 37 KB="2999226" 38 SourceFile="!(bindpath.redist)\Windows$(var.msuver)-KB2999226-x64.msu" 39 DisplayName="!(loc.CRTDescription)" 40 Description="!(loc.CRTDescription)" 41 Compressed="$(var.CompressMSI)" 42 DownloadUrl="$(var.DownloadUrl)" 43 InstallCondition="not CRTInstalled and VersionNT64 = $(var.ver) and (Include_core or Include_exe or Include_launcher or Include_pip) and not LauncherOnly" /> 44 </PackageGroup> 45 </Fragment> 46 47 <?undef msuver ?> 48 <?endforeach ?> 49</Wix>