diff options
-rw-r--r-- | src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs index af42fa49..0d1c3ea8 100644 --- a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs +++ b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | |||
@@ -903,25 +903,25 @@ namespace WixToolset.Core.ExtensibilityServices | |||
903 | case Platform.X86: | 903 | case Platform.X86: |
904 | if ((supportedPlatforms & CustomActionPlatforms.X86) == CustomActionPlatforms.X86) | 904 | if ((supportedPlatforms & CustomActionPlatforms.X86) == CustomActionPlatforms.X86) |
905 | { | 905 | { |
906 | name = String.Concat(customAction, "_X86"); | 906 | name = String.Concat(name, "_X86"); |
907 | } | 907 | } |
908 | break; | 908 | break; |
909 | case Platform.X64: | 909 | case Platform.X64: |
910 | if ((supportedPlatforms & CustomActionPlatforms.X64) == CustomActionPlatforms.X64) | 910 | if ((supportedPlatforms & CustomActionPlatforms.X64) == CustomActionPlatforms.X64) |
911 | { | 911 | { |
912 | name = String.Concat(customAction, "_X64"); | 912 | name = String.Concat(name, "_X64"); |
913 | } | 913 | } |
914 | break; | 914 | break; |
915 | case Platform.ARM: | 915 | case Platform.ARM: |
916 | if ((supportedPlatforms & CustomActionPlatforms.ARM) == CustomActionPlatforms.ARM) | 916 | if ((supportedPlatforms & CustomActionPlatforms.ARM) == CustomActionPlatforms.ARM) |
917 | { | 917 | { |
918 | name = String.Concat(customAction, "_A32"); | 918 | name = String.Concat(name, "_A32"); |
919 | } | 919 | } |
920 | break; | 920 | break; |
921 | case Platform.ARM64: | 921 | case Platform.ARM64: |
922 | if ((supportedPlatforms & CustomActionPlatforms.ARM64) == CustomActionPlatforms.ARM64) | 922 | if ((supportedPlatforms & CustomActionPlatforms.ARM64) == CustomActionPlatforms.ARM64) |
923 | { | 923 | { |
924 | name = String.Concat(customAction, "_A64"); | 924 | name = String.Concat(name, "_A64"); |
925 | } | 925 | } |
926 | break; | 926 | break; |
927 | case Platform.IA64: | 927 | case Platform.IA64: |