|
3 | 3 | Name="!(loc.BundleName) $(ProductVersion)"
|
4 | 4 | Version="$(ProductVersion)"
|
5 | 5 | Manufacturer="!(loc.ManufacturerName)"
|
| 6 | + DisableModify="yes" |
6 | 7 | Compressed="$(IsBundleCompressed)"
|
7 | 8 | UpgradeCode="$(BundleUpgradeCode)">
|
8 | 9 |
|
|
31 | 32 | <Variable Name="OptionsInstallIde" bal:Overridable="yes" Persisted="yes" Value="1" />
|
32 | 33 | <Variable Name="OptionsInstallRtl" bal:Overridable="yes" Persisted="yes" Value="1" />
|
33 | 34 | <Variable Name="OptionsInstallSdkX86" bal:Overridable="yes" Persisted="yes" Value="1" />
|
| 35 | + <Variable Name="OptionsInstallRedistX86" bal:Overridable="yes" Persisted="yes" Value="1" /> |
34 | 36 | <Variable Name="OptionsInstallSdkAMD64" bal:Overridable="yes" Persisted="yes" Value="1" />
|
| 37 | + <Variable Name="OptionsInstallRedistAMD64" bal:Overridable="yes" Persisted="yes" Value="1" /> |
35 | 38 | <Variable Name="OptionsInstallSdkArm64" bal:Overridable="yes" Persisted="yes" Value="1" />
|
| 39 | + <Variable Name="OptionsInstallRedistArm64" bal:Overridable="yes" Persisted="yes" Value="1" /> |
36 | 40 |
|
37 | 41 | <!--
|
38 | 42 | For the online bundle, we need to provide a download URL for each package and its .cabs.
|
|
95 | 99 | InstallCondition="OptionsInstallSdkX86"
|
96 | 100 | DownloadUrl="$(BaseReleaseDownloadUrl)/{2}">
|
97 | 101 | <MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
|
| 102 | + <MsiProperty Name="INSTALLREDIST" Value="[OptionsInstallRedistX86]" /> |
98 | 103 | </MsiPackage>
|
99 | 104 | <?endif?>
|
100 | 105 |
|
|
103 | 108 | InstallCondition="OptionsInstallSdkAMD64"
|
104 | 109 | DownloadUrl="$(BaseReleaseDownloadUrl)/{2}">
|
105 | 110 | <MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
|
| 111 | + <MsiProperty Name="INSTALLREDIST" Value="[OptionsInstallRedistAMD64]" /> |
106 | 112 | </MsiPackage>
|
107 | 113 |
|
108 | 114 | <?if $(INCLUDE_ARM64_SDK) == true ?>
|
|
111 | 117 | InstallCondition="OptionsInstallSdkArm64"
|
112 | 118 | DownloadUrl="$(BaseReleaseDownloadUrl)/{2}">
|
113 | 119 | <MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
|
| 120 | + <MsiProperty Name="INSTALLREDIST" Value="[OptionsInstallRedistArm64]" /> |
114 | 121 | </MsiPackage>
|
115 | 122 | <?endif?>
|
116 | 123 | </Chain>
|
|
0 commit comments