From 9f86122c15850bf6878cc1f17069592df5f82afb Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Fri, 21 Jul 2023 19:56:59 -0400 Subject: [PATCH] Fix mentions of dark.exe. --- src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs | 2 +- src/wix/test/WixToolsetTest.CoreIntegration/BundleFixture.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs b/src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs index 69cd8fa69..3b2ecdd7a 100644 --- a/src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs +++ b/src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs @@ -8,7 +8,7 @@ internal static class BurnBackendWarnings { public static Message AttachedContainerPayloadCollision(SourceLineNumber sourceLineNumbers, string payloadId, string payloadName) { - 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); + 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); } public static Message AttachedContainerPayloadCollision2(SourceLineNumber sourceLineNumbers) diff --git a/src/wix/test/WixToolsetTest.CoreIntegration/BundleFixture.cs b/src/wix/test/WixToolsetTest.CoreIntegration/BundleFixture.cs index 1b64e36c1..840334b19 100644 --- a/src/wix/test/WixToolsetTest.CoreIntegration/BundleFixture.cs +++ b/src/wix/test/WixToolsetTest.CoreIntegration/BundleFixture.cs @@ -611,7 +611,7 @@ public void CannotBuildWithDuplicatePayloadNames() .ToArray(); WixAssert.CompareLineByLine(new string[] { - "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.", + "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.", }, attachedContainerWarnings); var baContainerErrors = result.Messages.Where(m => m.Id == 8002)