aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WarningMessages.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/WarningMessages.cs')
-rw-r--r--src/WixToolset.Data/WarningMessages.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WarningMessages.cs b/src/WixToolset.Data/WarningMessages.cs
index 2deaeb7d..a1df1282 100644
--- a/src/WixToolset.Data/WarningMessages.cs
+++ b/src/WixToolset.Data/WarningMessages.cs
@@ -442,6 +442,11 @@ namespace WixToolset.Data
442 return Message(sourceLineNumbers, Ids.PatchTable, "The {0} table is added to the install package by a transform from a patch package (.msp) and not authored directly into an install package (.msi). The information in this table will be left out of the decompiled output.", tableName); 442 return Message(sourceLineNumbers, Ids.PatchTable, "The {0} table is added to the install package by a transform from a patch package (.msp) and not authored directly into an install package (.msi). The information in this table will be left out of the decompiled output.", tableName);
443 } 443 }
444 444
445 public static Message PathCanonicalized(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string originalValue, string canonicalValue)
446 {
447 return Message(sourceLineNumbers, Ids.PathCanonicalized, "The {0}/@{1} attribute's value, '{2}', has been canonicalized to '{3}'.", elementName, attributeName, originalValue, canonicalValue);
448 }
449
445 public static Message PerUserButForcingPerMachine(SourceLineNumber sourceLineNumbers, string path) 450 public static Message PerUserButForcingPerMachine(SourceLineNumber sourceLineNumbers, string path)
446 { 451 {
447 return Message(sourceLineNumbers, Ids.PerUserButForcingPerMachine, "The MSI '{0}' is a per-user package being forced to per-machine. Verify that the MsiPackage/@ForcePerMachine attribute is expected and that the per-user package works correctly when forced to install per-machine.", path); 452 return Message(sourceLineNumbers, Ids.PerUserButForcingPerMachine, "The MSI '{0}' is a per-user package being forced to per-machine. Verify that the MsiPackage/@ForcePerMachine attribute is expected and that the per-user package works correctly when forced to install per-machine.", path);
@@ -786,6 +791,7 @@ namespace WixToolset.Data
786 ServiceConfigFamilyNotSupported = 1149, 791 ServiceConfigFamilyNotSupported = 1149,
787 SymbolNotTranslatedToOutput = 1150, 792 SymbolNotTranslatedToOutput = 1150,
788 MsiTransactionLimitations = 1151, 793 MsiTransactionLimitations = 1151,
794 PathCanonicalized = 1152,
789 } 795 }
790 } 796 }
791} 797}