summaryrefslogtreecommitdiff
path: root/src/wix/WixToolset.Core/LinkerWarnings.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wix/WixToolset.Core/LinkerWarnings.cs')
-rw-r--r--src/wix/WixToolset.Core/LinkerWarnings.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wix/WixToolset.Core/LinkerWarnings.cs b/src/wix/WixToolset.Core/LinkerWarnings.cs
index 968fa4ea..0eca090e 100644
--- a/src/wix/WixToolset.Core/LinkerWarnings.cs
+++ b/src/wix/WixToolset.Core/LinkerWarnings.cs
@@ -16,11 +16,6 @@ namespace WixToolset.Core
16 return Message(sourceLineNumbers, Ids.PayloadInMultipleContainers, "The Payload '{0}' can't be added to Container '{1}' because it was already added to Container '{2}'.", payloadId, containerId1, containerId2); 16 return Message(sourceLineNumbers, Ids.PayloadInMultipleContainers, "The Payload '{0}' can't be added to Container '{1}' because it was already added to Container '{2}'.", payloadId, containerId1, containerId2);
17 } 17 }
18 18
19 public static Message UncompressedPayloadInContainer(SourceLineNumber sourceLineNumbers, string payloadId, string containerId)
20 {
21 return Message(sourceLineNumbers, Ids.UncompressedPayloadInContainer, "The Payload '{0}' is being added to Container '{1}', overriding its Compressed value of 'no'.", payloadId, containerId);
22 }
23
24 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args) 19 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args)
25 { 20 {
26 return new Message(sourceLineNumber, MessageLevel.Warning, (int)id, format, args); 21 return new Message(sourceLineNumber, MessageLevel.Warning, (int)id, format, args);
@@ -30,7 +25,6 @@ namespace WixToolset.Core
30 { 25 {
31 LayoutPayloadInContainer = 6900, 26 LayoutPayloadInContainer = 6900,
32 PayloadInMultipleContainers = 6901, 27 PayloadInMultipleContainers = 6901,
33 UncompressedPayloadInContainer = 6902,
34 } // last available is 6999. 7000 is LinkerErrors. 28 } // last available is 6999. 7000 is LinkerErrors.
35 } 29 }
36} 30}