aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/ExtensibilityServices
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-09-19 21:20:31 -0400
committerBob Arnson <bob@firegiant.com>2020-09-19 21:24:09 -0400
commit27124207afa517da564cdce557dd21654f1a9078 (patch)
tree463cc9e3faf129fe7969f29c75a8c77f1ae21cbc /src/WixToolset.Core/ExtensibilityServices
parent3f05c650723ecd0a8fe7ab151c67db6c13cb5d75 (diff)
downloadwix-27124207afa517da564cdce557dd21654f1a9078.tar.gz
wix-27124207afa517da564cdce557dd21654f1a9078.tar.bz2
wix-27124207afa517da564cdce557dd21654f1a9078.zip
Remove 32-bit ARM support.
Diffstat (limited to 'src/WixToolset.Core/ExtensibilityServices')
-rw-r--r--src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs12
-rw-r--r--src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs6
2 files changed, 0 insertions, 18 deletions
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
138 suffix = "_X64"; 138 suffix = "_X64";
139 } 139 }
140 break; 140 break;
141 case Platform.ARM:
142 if ((supportedPlatforms & BurnPlatforms.ARM) == BurnPlatforms.ARM)
143 {
144 suffix = "_A32";
145 }
146 break;
147 case Platform.ARM64: 141 case Platform.ARM64:
148 if ((supportedPlatforms & BurnPlatforms.ARM64) == BurnPlatforms.ARM64) 142 if ((supportedPlatforms & BurnPlatforms.ARM64) == BurnPlatforms.ARM64)
149 { 143 {
@@ -907,12 +901,6 @@ namespace WixToolset.Core.ExtensibilityServices
907 suffix = "_X64"; 901 suffix = "_X64";
908 } 902 }
909 break; 903 break;
910 case Platform.ARM:
911 if ((supportedPlatforms & CustomActionPlatforms.ARM) == CustomActionPlatforms.ARM)
912 {
913 suffix = "_A32";
914 }
915 break;
916 case Platform.ARM64: 904 case Platform.ARM64:
917 if ((supportedPlatforms & CustomActionPlatforms.ARM64) == CustomActionPlatforms.ARM64) 905 if ((supportedPlatforms & CustomActionPlatforms.ARM64) == CustomActionPlatforms.ARM64)
918 { 906 {
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
238 case Platform.X64: 238 case Platform.X64:
239 return "x64"; 239 return "x64";
240 240
241 case Platform.IA64:
242 return "ia64";
243
244 case Platform.ARM:
245 return "arm";
246
247 case Platform.ARM64: 241 case Platform.ARM64:
248 return "arm64"; 242 return "arm64";
249 243