diff options
Diffstat (limited to 'src/WixToolset.Data/WarningMessages.cs')
-rw-r--r-- | src/WixToolset.Data/WarningMessages.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WarningMessages.cs b/src/WixToolset.Data/WarningMessages.cs index 438dc8f3..2deaeb7d 100644 --- a/src/WixToolset.Data/WarningMessages.cs +++ b/src/WixToolset.Data/WarningMessages.cs | |||
@@ -397,6 +397,11 @@ namespace WixToolset.Data | |||
397 | return Message(sourceLineNumbers, Ids.MissingUpgradeCode, "The Product/@UpgradeCode attribute was not found; it is strongly recommended to ensure that this product can be upgraded."); | 397 | return Message(sourceLineNumbers, Ids.MissingUpgradeCode, "The Product/@UpgradeCode attribute was not found; it is strongly recommended to ensure that this product can be upgraded."); |
398 | } | 398 | } |
399 | 399 | ||
400 | public static Message MsiTransactionLimitations(SourceLineNumber sourceLineNumbers) | ||
401 | { | ||
402 | return Message(sourceLineNumbers, Ids.MsiTransactionLimitations, "MSI transactions have limitations that make it hard to use them successfully in a bundle. Test the bundle thoroughly, especially in upgrade scenarios and the scenario that required them in the first place."); | ||
403 | } | ||
404 | |||
400 | public static Message NestedInstall(SourceLineNumber sourceLineNumbers, string tableName, string columnName, Object value) | 405 | public static Message NestedInstall(SourceLineNumber sourceLineNumbers, string tableName, string columnName, Object value) |
401 | { | 406 | { |
402 | return Message(sourceLineNumbers, Ids.NestedInstall, "The {0}.{1} column's value, '{2}', indicates a nested install. Nested installations are not supported by the WiX team. This action will be left out of the decompiled output.", tableName, columnName, value); | 407 | return Message(sourceLineNumbers, Ids.NestedInstall, "The {0}.{1} column's value, '{2}', indicates a nested install. Nested installations are not supported by the WiX team. This action will be left out of the decompiled output.", tableName, columnName, value); |
@@ -780,6 +785,7 @@ namespace WixToolset.Data | |||
780 | VersionTruncated = 1148, | 785 | VersionTruncated = 1148, |
781 | ServiceConfigFamilyNotSupported = 1149, | 786 | ServiceConfigFamilyNotSupported = 1149, |
782 | SymbolNotTranslatedToOutput = 1150, | 787 | SymbolNotTranslatedToOutput = 1150, |
788 | MsiTransactionLimitations = 1151, | ||
783 | } | 789 | } |
784 | } | 790 | } |
785 | } | 791 | } |