From 27124207afa517da564cdce557dd21654f1a9078 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Sat, 19 Sep 2020 21:20:31 -0400 Subject: Remove 32-bit ARM support. --- src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | 12 ------------ .../ExtensibilityServices/PreprocessHelper.cs | 6 ------ 2 files changed, 18 deletions(-) (limited to 'src/WixToolset.Core/ExtensibilityServices') diff --git a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs index e75f5fe5..7f718ad4 100644 --- a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs +++ b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs @@ -138,12 +138,6 @@ namespace WixToolset.Core.ExtensibilityServices suffix = "_X64"; } break; - case Platform.ARM: - if ((supportedPlatforms & BurnPlatforms.ARM) == BurnPlatforms.ARM) - { - suffix = "_A32"; - } - break; case Platform.ARM64: if ((supportedPlatforms & BurnPlatforms.ARM64) == BurnPlatforms.ARM64) { @@ -907,12 +901,6 @@ namespace WixToolset.Core.ExtensibilityServices suffix = "_X64"; } break; - case Platform.ARM: - if ((supportedPlatforms & CustomActionPlatforms.ARM) == CustomActionPlatforms.ARM) - { - suffix = "_A32"; - } - break; case Platform.ARM64: if ((supportedPlatforms & CustomActionPlatforms.ARM64) == CustomActionPlatforms.ARM64) { diff --git a/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs b/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs index e84bb001..df301196 100644 --- a/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs +++ b/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs @@ -238,12 +238,6 @@ namespace WixToolset.Core.ExtensibilityServices case Platform.X64: return "x64"; - case Platform.IA64: - return "ia64"; - - case Platform.ARM: - return "arm"; - case Platform.ARM64: return "arm64"; -- cgit v1.2.3-55-g6feb