aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler_Bundle.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-07-05 23:26:48 -0700
committerRob Mensching <rob@firegiant.com>2020-07-08 15:18:09 -0700
commitb8bd03960b79e92d38ee7094a88e246253dad800 (patch)
tree89fec2cf4003832110bcbdd0633c8dcd492efd54 /src/WixToolset.Core/Compiler_Bundle.cs
parent7b583330fd42356930bdc5a28820e546f6ca45a4 (diff)
downloadwix-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_Bundle.cs')
-rw-r--r--src/WixToolset.Core/Compiler_Bundle.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler_Bundle.cs b/src/WixToolset.Core/Compiler_Bundle.cs
index 578c7dcd..2089f037 100644
--- a/src/WixToolset.Core/Compiler_Bundle.cs
+++ b/src/WixToolset.Core/Compiler_Bundle.cs
@@ -236,7 +236,7 @@ namespace WixToolset.Core
236 else 236 else
237 { 237 {
238 // Ensure only allowable path characters are in "name" (and change spaces to underscores). 238 // Ensure only allowable path characters are in "name" (and change spaces to underscores).
239 fileSystemSafeBundleName = CompilerCore.MakeValidLongFileName(name.Replace(' ', '_'), "_"); 239 fileSystemSafeBundleName = CompilerCore.MakeValidLongFileName(name.Replace(' ', '_'), '_');
240 logVariablePrefixAndExtension = String.Concat("WixBundleLog:", fileSystemSafeBundleName, ":log"); 240 logVariablePrefixAndExtension = String.Concat("WixBundleLog:", fileSystemSafeBundleName, ":log");
241 } 241 }
242 242