@joebigelow / wix / commits / 1c50eb8a

Fix mentions of dark.exe.

Bob Arnson committed Jul 21, 2023 at 19:56 UTC 1c50eb8ac6d693b910eb2bd1d44526d9e3f10c50
2 files changed +2 -2
src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs
+1 -1
@@ -8,7 +8,7 @@ namespace WixToolset.Core.Burn
8 {
9 public static Message AttachedContainerPayloadCollision(SourceLineNumber sourceLineNumbers, string payloadId, string payloadName)
10 {
11 - return Message(sourceLineNumbers, Ids.AttachedContainerPayloadCollision, "The Payload '{0}' has a duplicate Name '{1}' in the attached container. When extracting the bundle with dark.exe, the file will get overwritten.", payloadId, payloadName);
11 + return Message(sourceLineNumbers, Ids.AttachedContainerPayloadCollision, "The Payload '{0}' has a duplicate Name '{1}' in the attached container. When extracting the bundle with `wix burn extract`, the file will get overwritten.", payloadId, payloadName);
12 }
13
14 public static Message AttachedContainerPayloadCollision2(SourceLineNumber sourceLineNumbers)
src/wix/test/WixToolsetTest.CoreIntegration/BundleFixture.cs
+1 -1
@@ -611,7 +611,7 @@ namespace WixToolsetTest.CoreIntegration
611 .ToArray();
612 WixAssert.CompareLineByLine(new string[]
613 {
614 - "The Payload 'Auto2' has a duplicate Name 'burn.exe' in the attached container. When extracting the bundle with dark.exe, the file will get overwritten.",
614 + "The Payload 'Auto2' has a duplicate Name 'burn.exe' in the attached container. When extracting the bundle with `wix burn extract`, the file will get overwritten.",
615 }, attachedContainerWarnings);
616
617 var baContainerErrors = result.Messages.Where(m => m.Id == 8002)