aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs
index 0d1c3ea8..e16f909a 100644
--- a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs
+++ b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs
@@ -900,12 +900,6 @@ namespace WixToolset.Core.ExtensibilityServices
900 900
901 switch (currentPlatform) 901 switch (currentPlatform)
902 { 902 {
903 case Platform.X86:
904 if ((supportedPlatforms & CustomActionPlatforms.X86) == CustomActionPlatforms.X86)
905 {
906 name = String.Concat(name, "_X86");
907 }
908 break;
909 case Platform.X64: 903 case Platform.X64:
910 if ((supportedPlatforms & CustomActionPlatforms.X64) == CustomActionPlatforms.X64) 904 if ((supportedPlatforms & CustomActionPlatforms.X64) == CustomActionPlatforms.X64)
911 { 905 {
@@ -924,8 +918,10 @@ namespace WixToolset.Core.ExtensibilityServices
924 name = String.Concat(name, "_A64"); 918 name = String.Concat(name, "_A64");
925 } 919 }
926 break; 920 break;
927 case Platform.IA64: 921 // Fall back to x86.
928 // yeah, no 922 case Platform.X86:
923 default:
924 name = String.Concat(name, "_X86");
929 break; 925 break;
930 } 926 }
931 927