|
8 | 8 | Version="$(NonSemVerProductVersion)" |
9 | 9 | Scope="$(PackageScope)"> |
10 | 10 |
|
| 11 | + <Property Id="INSTALLARM64SDK" Value="1" /> |
| 12 | + <Property Id="INSTALLARM64EXPERIMENTALSDK" Value="1" /> |
| 13 | + <Property Id="INSTALLARM64REDIST" Value="1" /> |
| 14 | + <Property Id="INSTALLAMD64SDK" Value="1" /> |
| 15 | + <Property Id="INSTALLAMD64EXPERIMENTALSDK" Value="1" /> |
| 16 | + <Property Id="INSTALLAMD64REDIST" Value="1" /> |
| 17 | + <Property Id="INSTALLX86SDK" Value="1" /> |
| 18 | + <Property Id="INSTALLX86EXPERIMENTALSDK" Value="1" /> |
| 19 | + <Property Id="INSTALLX86REDIST" Value="1" /> |
| 20 | + |
11 | 21 | <?define PlatformRoot = "$(ImageRoot)\Platforms\Windows.platform"?> |
12 | 22 |
|
13 | 23 | <?define ExperimentalSDKRoot = "$(PlatformRoot)\Developer\SDKs\WindowsExperimental.sdk"?> |
|
4154 | 4164 | </Feature> |
4155 | 4165 |
|
4156 | 4166 | <?if $(IncludeARM64) = True?> |
4157 | | - <Feature Display="hidden" Id="arm64.platform" Level="0" Title="!(loc.Plt_ProductName_Windows_arm64)"> |
4158 | | - <Level Condition="InstallARM64SDK = 1 OR InstallARM64ExperimentalSDK = 1" Value="1" /> |
| 4167 | + <Feature Id="arm64.platform" AllowAbsent="yes" Title="!(loc.Plt_ProductName_Windows_arm64)"> |
| 4168 | + <Level Condition="INSTALLARM64SDK = 0 AND INSTALLARM64EXPERIMENTALSDK = 0" Value="0" /> |
4159 | 4169 |
|
4160 | 4170 | <ComponentGroupRef Id="XCTest.arm64" /> |
4161 | 4171 | <ComponentGroupRef Id="Testing.arm64" /> |
4162 | 4172 | </Feature> |
4163 | 4173 | <?endif?> |
4164 | 4174 |
|
4165 | 4175 | <?if $(IncludeX64) = True?> |
4166 | | - <Feature Display="hidden" Id="x64.platform" Level="0" Title="!(loc.Plt_ProductName_Windows_amd64)"> |
4167 | | - <Level Condition="InstallAMD64SDK = 1 OR InstallAMD64ExperimentalSDK = 1" Value="1" /> |
| 4176 | + <Feature Id="x64.platform" AllowAbsent="yes" Title="!(loc.Plt_ProductName_Windows_amd64)"> |
| 4177 | + <Level Condition="INSTALLAMD64SDK = 0 AND INSTALLAMD64EXPERIMENTALSDK = 0" Value="0" /> |
4168 | 4178 |
|
4169 | 4179 | <ComponentGroupRef Id="XCTest.x64" /> |
4170 | 4180 | <ComponentGroupRef Id="Testing.x64" /> |
4171 | 4181 | </Feature> |
4172 | 4182 | <?endif?> |
4173 | 4183 |
|
4174 | 4184 | <?if $(IncludeX86) = True?> |
4175 | | - <Feature Display="hidden" Id="x86.platform" Level="0" Title="!(loc.Plt_ProductName_Windows_x86)"> |
4176 | | - <Level Condition="InstallX86SDK = 1 OR InstallX86ExperimentalSDK = 1" Value="1" /> |
| 4185 | + <Feature Id="x86.platform" AllowAbsent="yes" Title="!(loc.Plt_ProductName_Windows_x86)"> |
| 4186 | + <Level Condition="INSTALLX86SDK = 0 AND INSTALLX86EXPERIMENTALSDK = 0" Value="0" /> |
4177 | 4187 |
|
4178 | 4188 | <ComponentGroupRef Id="XCTest.x86" /> |
4179 | 4189 | <ComponentGroupRef Id="Testing.x86" /> |
|
4197 | 4207 |
|
4198 | 4208 | <?if $(IncludeARM64) = True?> |
4199 | 4209 | <Feature Id="arm64" AllowAbsent="yes" Title="!(loc.Sdk_ProductName_Windows_arm64)"> |
4200 | | - <Level Condition="InstallARM64SDK = 0" Value="0" /> |
| 4210 | + <Level Condition="INSTALLARM64SDK = 0" Value="0" /> |
4201 | 4211 |
|
4202 | 4212 | <ComponentGroupRef Id="LegacySwiftRemoteMirror.arm64" /> |
4203 | 4213 |
|
|
4238 | 4248 |
|
4239 | 4249 | <?if $(IncludeX64) = True?> |
4240 | 4250 | <Feature Id="x64" AllowAbsent="yes" Title="!(loc.Sdk_ProductName_Windows_amd64)"> |
4241 | | - <Level Condition="InstallAMD64SDK = 0" Value="0" /> |
| 4251 | + <Level Condition="INSTALLAMD64SDK = 0" Value="0" /> |
4242 | 4252 |
|
4243 | 4253 | <ComponentGroupRef Id="LegacySwiftRemoteMirror.x64" /> |
4244 | 4254 |
|
|
4279 | 4289 |
|
4280 | 4290 | <?if $(IncludeX86) = True?> |
4281 | 4291 | <Feature Id="x86" AllowAbsent="yes" Title="!(loc.Sdk_ProductName_Windows_x86)"> |
4282 | | - <Level Condition="InstallX86SDK = 0" Value="0" /> |
| 4292 | + <Level Condition="INSTALLX86SDK = 0" Value="0" /> |
4283 | 4293 |
|
4284 | 4294 | <ComponentGroupRef Id="LegacySwiftRemoteMirror.x86" /> |
4285 | 4295 |
|
|
4334 | 4344 |
|
4335 | 4345 | <?if $(IncludeARM64) = True?> |
4336 | 4346 | <Feature Id="ExperimentalARM64" AllowAbsent="yes" Title="!(loc.Plt_ProductName_Windows_Experimental_arm64)"> |
4337 | | - <Level Condition="InstallARM64ExperimentalSDK = 1" Value="1" /> |
| 4347 | + <Level Condition="INSTALLARM64EXPERIMENTALSDK = 0" Value="0" /> |
4338 | 4348 |
|
4339 | 4349 | <ComponentGroupRef Id="BlocksRuntime.arm64" /> |
4340 | 4350 | <ComponentGroupRef Id="CRT.arm64" /> |
|
4405 | 4415 |
|
4406 | 4416 | <?if $(IncludeX64) = True?> |
4407 | 4417 | <Feature Id="ExperimentalX64" AllowAbsent="yes" Title="!(loc.Plt_ProductName_Windows_Experimental_amd64)"> |
4408 | | - <Level Condition="InstallX64ExperimentalSDK = 1" Value="1" /> |
| 4418 | + <Level Condition="INSTALLAMD64EXPERIMENTALSDK = 0" Value="0" /> |
4409 | 4419 |
|
4410 | 4420 | <ComponentGroupRef Id="BlocksRuntime.x64" /> |
4411 | 4421 | <ComponentGroupRef Id="CRT.x64" /> |
|
4476 | 4486 |
|
4477 | 4487 | <?if $(IncludeX86) = True?> |
4478 | 4488 | <Feature Id="ExperimentalX86" AllowAbsent="yes" Title="!(loc.Plt_ProductName_Windows_Experimental_x86)"> |
4479 | | - <Level Condition="InstallX86ExperimentalSDK = 1" Value="1" /> |
| 4489 | + <Level Condition="INSTALLX86EXPERIMENTALSDK = 0" Value="0" /> |
4480 | 4490 |
|
4481 | 4491 | <ComponentGroupRef Id="BlocksRuntime.x86" /> |
4482 | 4492 | <ComponentGroupRef Id="CRT.x86" /> |
|
0 commit comments