diff options
author | Bob Arnson <bob@firegiant.com> | 2021-02-23 17:43:08 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2021-02-23 17:48:38 -0500 |
commit | 41a337d00efa2f649ae5c1575ff55e568dc0b796 (patch) | |
tree | 626ed05cb76752862b1ab1a93983b204ee40e229 /src/WixToolset.Core | |
parent | 78837a56ad0fef5880201002a1a3a5918d688de5 (diff) | |
download | wix-41a337d00efa2f649ae5c1575ff55e568dc0b796.tar.gz wix-41a337d00efa2f649ae5c1575ff55e568dc0b796.tar.bz2 wix-41a337d00efa2f649ae5c1575ff55e568dc0b796.zip |
Don't prefix custom action references.
Fixes https://github.com/wixtoolset/issues/issues/6365
Diffstat (limited to 'src/WixToolset.Core')
-rw-r--r-- | src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs index 6a71c4e9..ad2427e4 100644 --- a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs +++ b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | |||
@@ -875,7 +875,6 @@ namespace WixToolset.Core.ExtensibilityServices | |||
875 | { | 875 | { |
876 | if (!this.Messaging.EncounteredError) | 876 | if (!this.Messaging.EncounteredError) |
877 | { | 877 | { |
878 | var name = String.Concat("Wix4", customAction); | ||
879 | var suffix = "_X86"; | 878 | var suffix = "_X86"; |
880 | 879 | ||
881 | switch (currentPlatform) | 880 | switch (currentPlatform) |
@@ -894,7 +893,7 @@ namespace WixToolset.Core.ExtensibilityServices | |||
894 | break; | 893 | break; |
895 | } | 894 | } |
896 | 895 | ||
897 | this.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, name + suffix); | 896 | this.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, customAction + suffix); |
898 | } | 897 | } |
899 | } | 898 | } |
900 | 899 | ||