From 4fcfe83e12dbbedb497ee7eaf15491dde6c08a6a Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 3 Mar 2020 19:18:14 -0500 Subject: Fix custom action prefix. --- src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 case Platform.X86: if ((supportedPlatforms & CustomActionPlatforms.X86) == CustomActionPlatforms.X86) { - name = String.Concat(customAction, "_X86"); + name = String.Concat(name, "_X86"); } break; case Platform.X64: if ((supportedPlatforms & CustomActionPlatforms.X64) == CustomActionPlatforms.X64) { - name = String.Concat(customAction, "_X64"); + name = String.Concat(name, "_X64"); } break; case Platform.ARM: if ((supportedPlatforms & CustomActionPlatforms.ARM) == CustomActionPlatforms.ARM) { - name = String.Concat(customAction, "_A32"); + name = String.Concat(name, "_A32"); } break; case Platform.ARM64: if ((supportedPlatforms & CustomActionPlatforms.ARM64) == CustomActionPlatforms.ARM64) { - name = String.Concat(customAction, "_A64"); + name = String.Concat(name, "_A64"); } break; case Platform.IA64: -- cgit v1.2.3-55-g6feb