@joebigelow / wix-1 / commits / 4fcfe83e

Fix custom action prefix.

Bob Arnson committed Mar 3, 2020 at 19:18 UTC 4fcfe83e12dbbedb497ee7eaf15491dde6c08a6a
1 file changed +4 -4
src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs
+4 -4
@@ -903,25 +903,25 @@ namespace WixToolset.Core.ExtensibilityServices
903 case Platform.X86:
904 if ((supportedPlatforms & CustomActionPlatforms.X86) == CustomActionPlatforms.X86)
905 {
906 - name = String.Concat(customAction, "_X86");
906 + name = String.Concat(name, "_X86");
907 }
908 break;
909 case Platform.X64:
910 if ((supportedPlatforms & CustomActionPlatforms.X64) == CustomActionPlatforms.X64)
911 {
912 - name = String.Concat(customAction, "_X64");
912 + name = String.Concat(name, "_X64");
913 }
914 break;
915 case Platform.ARM:
916 if ((supportedPlatforms & CustomActionPlatforms.ARM) == CustomActionPlatforms.ARM)
917 {
918 - name = String.Concat(customAction, "_A32");
918 + name = String.Concat(name, "_A32");
919 }
920 break;
921 case Platform.ARM64:
922 if ((supportedPlatforms & CustomActionPlatforms.ARM64) == CustomActionPlatforms.ARM64)
923 {
924 - name = String.Concat(customAction, "_A64");
924 + name = String.Concat(name, "_A64");
925 }
926 break;
927 case Platform.IA64: