From 1c50eb8ac6d693b910eb2bd1d44526d9e3f10c50 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Fri, 21 Jul 2023 19:56:59 -0400 Subject: 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 69cd8fa6..3b2ecdd7 100644 --- a/src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs +++ b/src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs @@ -8,7 +8,7 @@ namespace WixToolset.Core.Burn { 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 1b64e36c..840334b1 100644 --- a/src/wix/test/WixToolsetTest.CoreIntegration/BundleFixture.cs +++ b/src/wix/test/WixToolsetTest.CoreIntegration/BundleFixture.cs @@ -611,7 +611,7 @@ namespace WixToolsetTest.CoreIntegration .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) -- cgit v1.2.3-55-g6feb