aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-05-17 17:30:46 -0400
committerBob Arnson <bob@firegiant.com>2020-05-17 17:38:40 -0400
commitdf8cf532fb8f77947664b95901122b8b47fe562b (patch)
treee88c8e836c8f215fa2bd67760a2c0ab91e12aff8 /src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs
parentad9cdd7dc6faee762e06a8d3446fa68c74dd802d (diff)
downloadwix-df8cf532fb8f77947664b95901122b8b47fe562b.tar.gz
wix-df8cf532fb8f77947664b95901122b8b47fe562b.tar.bz2
wix-df8cf532fb8f77947664b95901122b8b47fe562b.zip
Add missing ARM64 cases & random fixes.
Diffstat (limited to 'src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs')
-rw-r--r--src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs b/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs
index bdf11879..e84bb001 100644
--- a/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs
+++ b/src/WixToolset.Core/ExtensibilityServices/PreprocessHelper.cs
@@ -244,6 +244,9 @@ namespace WixToolset.Core.ExtensibilityServices
244 case Platform.ARM: 244 case Platform.ARM:
245 return "arm"; 245 return "arm";
246 246
247 case Platform.ARM64:
248 return "arm64";
249
247 default: 250 default:
248 throw new ArgumentException("Unknown platform enumeration '{0}' encountered.", context.Platform.ToString()); 251 throw new ArgumentException("Unknown platform enumeration '{0}' encountered.", context.Platform.ToString());
249 } 252 }