Skip to content

Commit 10ab12d

Browse files
mhegazycompnerd
authored andcommitted
Use the right variable name in feature install condition
1 parent 83bb1c4 commit 10ab12d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

platforms/Windows/platforms/windows/windows.wxs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4155,7 +4155,7 @@
41554155

41564156
<?if $(IncludeARM64) = True?>
41574157
<Feature Display="hidden" Id="arm64.platform" Level="0" Title="!(loc.Plt_ProductName_Windows_arm64)">
4158-
<Level Condition="InstallARM64Platform = 1 OR InstallARM64ExperimentalSDK = 1" Value="1" />
4158+
<Level Condition="InstallARM64SDK = 1 OR InstallARM64ExperimentalSDK = 1" Value="1" />
41594159

41604160
<ComponentGroupRef Id="XCTest.arm64" />
41614161
<ComponentGroupRef Id="Testing.arm64" />
@@ -4164,7 +4164,7 @@
41644164

41654165
<?if $(IncludeX64) = True?>
41664166
<Feature Display="hidden" Id="x64.platform" Level="0" Title="!(loc.Plt_ProductName_Windows_amd64)">
4167-
<Level Condition="InstallAMD64Platform = 1 OR InstallAMD64ExperimentalSDK = 1" Value="1" />
4167+
<Level Condition="InstallAMD64SDK = 1 OR InstallAMD64ExperimentalSDK = 1" Value="1" />
41684168

41694169
<ComponentGroupRef Id="XCTest.x64" />
41704170
<ComponentGroupRef Id="Testing.x64" />
@@ -4173,7 +4173,7 @@
41734173

41744174
<?if $(IncludeX86) = True?>
41754175
<Feature Display="hidden" Id="x86.platform" Level="0" Title="!(loc.Plt_ProductName_Windows_x86)">
4176-
<Level Condition="InstallX86Platform = 1 OR InstallX86ExperimentalSDK = 1" Value="1" />
4176+
<Level Condition="InstallX86SDK = 1 OR InstallX86ExperimentalSDK = 1" Value="1" />
41774177

41784178
<ComponentGroupRef Id="XCTest.x86" />
41794179
<ComponentGroupRef Id="Testing.x86" />

0 commit comments

Comments
 (0)