Skip to content

Commit

Permalink
Fix mentions of dark.exe.
Browse files Browse the repository at this point in the history
  • Loading branch information
barnson committed Jul 21, 2023
1 parent e0641f1 commit 9f86122
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/wix/WixToolset.Core.Burn/BurnBackendWarnings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9f86122

Please sign in to comment.