Skip to content

Commit e135d86

Browse files
committed
No iswin64
1 parent 6c56d81 commit e135d86

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

src/Installers/Windows/AspNetCoreModule-Setup/ANCMIISExpressV2/ancm_iis_expressv2.wxs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<?include ..\IIS-Setup\include.wxi ?>
77

88
<?define ProductCode = "*" ?>
9-
<?if $(var.IsWin64)=no ?>
10-
<?define ANCMUpgradeCode = "de400ae0-3cd7-4a35-a234-b5a41b90893c" ?>
11-
<?else?>
9+
<?if $(InstallerPlatform)=x64?>
1210
<?define ANCMUpgradeCode = "da062c0f-12c2-4703-8ed7-0cad342a53a1" ?>
11+
<?else?>
12+
<?define ANCMUpgradeCode = "de400ae0-3cd7-4a35-a234-b5a41b90893c" ?>
1313
<?endif?>
1414

1515
<?define ProductShortName="IIS Express AspNetCore Module V2" ?>

src/Installers/Windows/AspNetCoreModule-Setup/ANCMV2/aspnetcoremodulev2.wxs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<?include ..\IIS-Setup\include.wxi ?>
77

88
<?define ProductCode = "*" ?>
9-
<?if $(var.IsWin64)=no ?>
10-
<?define ANCMUpgradeCode = "d7168f76-9dd0-407d-bf22-0b450139e6a7" ?>
11-
<?else?>
9+
<?if $(InstallerPlatform)=x64?>
1210
<?define ANCMUpgradeCode = "8d50fde7-0b84-4900-b60d-bd952979ba0b" ?>
11+
<?else?>
12+
<?define ANCMUpgradeCode = "d7168f76-9dd0-407d-bf22-0b450139e6a7" ?>
1313
<?endif?>
1414
<?define ProductShortName="IIS AspNetCore Module V2" ?>
1515
<?define ProductNameShort="IIS_ANCM_V2" ?>

src/Installers/Windows/AspNetCoreModule-Setup/IIS-Setup/include.wxi

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<?define NativeMachine_arm64=43620?>
99

1010
<?if $(InstallerPlatform)=x64?>
11-
<?define IsWin64 = yes ?>
1211
<?define Bitness = always64 ?>
1312
<?define PlatformArchitecture = x64 ?>
1413
<?define ProgramFilesFolder = ProgramFiles64Folder ?>
@@ -18,15 +17,13 @@
1817
<?define PlatformValue = x64 ?>
1918
<?define ANCMInstallerVersion = 400 ?>
2019
<?elseif $(InstallerPlatform)=x86?>
21-
<?define IsWin64 = no ?>
2220
<?define Bitness = always32 ?>
2321
<?define PlatformArchitecture = x86 ?>
2422
<?define ProgramFilesFolder = ProgramFilesFolder ?>
2523
<?define SystemFolder = SystemFolder ?>
2624
<?define PlatformValue = Intel ?>
2725
<?define ANCMInstallerVersion = 400 ?>
2826
<?elseif $(InstallerPlatform)~=arm64?>
29-
<?define IsWin64 = yes ?>
3027
<?define Bitness = always64 ?>
3128
<?define PlatformArchitecture = ARM64 ?>
3229
<?define ProgramFilesFolder = ProgramFiles64Folder ?>

0 commit comments

Comments
 (0)