diff options
author | Bob Arnson <bob@firegiant.com> | 2020-03-03 19:18:14 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-03-03 19:34:13 -0500 |
commit | 4fcfe83e12dbbedb497ee7eaf15491dde6c08a6a (patch) | |
tree | 0a53c64252785e812fb52a709b28dfd727f526a2 | |
parent | 0a87bdd3ea0ba538e2cd2713c071c327168e3b44 (diff) | |
download | wix-4fcfe83e12dbbedb497ee7eaf15491dde6c08a6a.tar.gz wix-4fcfe83e12dbbedb497ee7eaf15491dde6c08a6a.tar.bz2 wix-4fcfe83e12dbbedb497ee7eaf15491dde6c08a6a.zip |
Fix custom action prefix.
-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: |