diff options
author | Rob Mensching <rob@firegiant.com> | 2020-07-05 23:26:48 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-07-08 15:18:09 -0700 |
commit | b8bd03960b79e92d38ee7094a88e246253dad800 (patch) | |
tree | 89fec2cf4003832110bcbdd0633c8dcd492efd54 /src/WixToolset.Core/Compiler_UI.cs | |
parent | 7b583330fd42356930bdc5a28820e546f6ca45a4 (diff) | |
download | wix-b8bd03960b79e92d38ee7094a88e246253dad800.tar.gz wix-b8bd03960b79e92d38ee7094a88e246253dad800.tar.bz2 wix-b8bd03960b79e92d38ee7094a88e246253dad800.zip |
Improve compiler performance by removing regex and other string fixes
Diffstat (limited to 'src/WixToolset.Core/Compiler_UI.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler_UI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler_UI.cs b/src/WixToolset.Core/Compiler_UI.cs index 36d2e4e9..9353d966 100644 --- a/src/WixToolset.Core/Compiler_UI.cs +++ b/src/WixToolset.Core/Compiler_UI.cs | |||
@@ -1740,7 +1740,7 @@ namespace WixToolset.Core | |||
1740 | { | 1740 | { |
1741 | // if we're not looking at a standard action or a formatted string then create a reference | 1741 | // if we're not looking at a standard action or a formatted string then create a reference |
1742 | // to the custom action. | 1742 | // to the custom action. |
1743 | if (!WindowsInstallerStandard.IsStandardAction(argument) && !Common.ContainsProperty(argument)) | 1743 | if (!WindowsInstallerStandard.IsStandardAction(argument) && !this.Core.ContainsProperty(argument)) |
1744 | { | 1744 | { |
1745 | this.Core.CreateSimpleReference(sourceLineNumbers, SymbolDefinitions.CustomAction, argument); | 1745 | this.Core.CreateSimpleReference(sourceLineNumbers, SymbolDefinitions.CustomAction, argument); |
1746 | } | 1746 | } |