diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-05-16 18:31:13 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-05-16 21:33:56 +1000 |
commit | ad9cdd7dc6faee762e06a8d3446fa68c74dd802d (patch) | |
tree | 48bf64bff5de8c4eeb339df42d40b956e9fc8ba4 /src/WixToolset.Core/Compiler_Bundle.cs | |
parent | 4d96895a19c79ced1543d44e181527824c82c8e8 (diff) | |
download | wix-ad9cdd7dc6faee762e06a8d3446fa68c74dd802d.tar.gz wix-ad9cdd7dc6faee762e06a8d3446fa68c74dd802d.tar.bz2 wix-ad9cdd7dc6faee762e06a8d3446fa68c74dd802d.zip |
Get Log/@Extension and Registration/@ProviderKey to match v3.
Diffstat (limited to 'src/WixToolset.Core/Compiler_Bundle.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler_Bundle.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler_Bundle.cs b/src/WixToolset.Core/Compiler_Bundle.cs index ee6866b9..c95cb2b4 100644 --- a/src/WixToolset.Core/Compiler_Bundle.cs +++ b/src/WixToolset.Core/Compiler_Bundle.cs | |||
@@ -230,13 +230,13 @@ namespace WixToolset.Core | |||
230 | 230 | ||
231 | if (String.IsNullOrEmpty(name)) | 231 | if (String.IsNullOrEmpty(name)) |
232 | { | 232 | { |
233 | logVariablePrefixAndExtension = String.Concat("WixBundleLog:Setup:.log"); | 233 | logVariablePrefixAndExtension = String.Concat("WixBundleLog:Setup:log"); |
234 | } | 234 | } |
235 | else | 235 | else |
236 | { | 236 | { |
237 | // Ensure only allowable path characters are in "name" (and change spaces to underscores). | 237 | // Ensure only allowable path characters are in "name" (and change spaces to underscores). |
238 | fileSystemSafeBundleName = CompilerCore.MakeValidLongFileName(name.Replace(' ', '_'), "_"); | 238 | fileSystemSafeBundleName = CompilerCore.MakeValidLongFileName(name.Replace(' ', '_'), "_"); |
239 | logVariablePrefixAndExtension = String.Concat("WixBundleLog:", fileSystemSafeBundleName, ":.log"); | 239 | logVariablePrefixAndExtension = String.Concat("WixBundleLog:", fileSystemSafeBundleName, ":log"); |
240 | } | 240 | } |
241 | 241 | ||
242 | this.activeName = String.IsNullOrEmpty(name) ? Common.GenerateGuid() : name; | 242 | this.activeName = String.IsNullOrEmpty(name) ? Common.GenerateGuid() : name; |