aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/ErrorMessages.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/ErrorMessages.cs')
-rw-r--r--src/WixToolset.Data/ErrorMessages.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs
index 48c1b44b..33cccdd2 100644
--- a/src/WixToolset.Data/ErrorMessages.cs
+++ b/src/WixToolset.Data/ErrorMessages.cs
@@ -1954,6 +1954,11 @@ namespace WixToolset.Data
1954 return Message(null, Ids.UnableToGetAuthenticodeCertOfFileDownlevelOS, "Unable to get the authenticode certificate of '{0}'. The cryptography API has limitations on Windows XP and Windows Server 2003. More information: {1}", filePath, moreInformation); 1954 return Message(null, Ids.UnableToGetAuthenticodeCertOfFileDownlevelOS, "Unable to get the authenticode certificate of '{0}'. The cryptography API has limitations on Windows XP and Windows Server 2003. More information: {1}", filePath, moreInformation);
1955 } 1955 }
1956 1956
1957 public static Message UnableToConvertFieldToNumber(string value)
1958 {
1959 return Message(null, Ids.UnableToConvertFieldToNumber, "Unable to convert intermediate tuple field value '{0}' to a number. This means the intermediate is corrupt or of an unsupported version.", value);
1960 }
1961
1957 public static Message UnableToOpenModule(SourceLineNumber sourceLineNumbers, string modulePath, string message) 1962 public static Message UnableToOpenModule(SourceLineNumber sourceLineNumbers, string modulePath, string message)
1958 { 1963 {
1959 return Message(sourceLineNumbers, Ids.UnableToOpenModule, "Unable to open merge module '{0}'. Check to make sure the module language is correct. '{1}'", modulePath, message); 1964 return Message(sourceLineNumbers, Ids.UnableToOpenModule, "Unable to open merge module '{0}'. Check to make sure the module language is correct. '{1}'", modulePath, message);
@@ -2634,6 +2639,7 @@ namespace WixToolset.Data
2634 MsiTransactionX86BeforeX64 = 390, 2639 MsiTransactionX86BeforeX64 = 390,
2635 NoSourceFiles = 391, 2640 NoSourceFiles = 391,
2636 WixiplSourceFileIsExclusive = 392, 2641 WixiplSourceFileIsExclusive = 392,
2642 UnableToConvertFieldToNumber = 393,
2637 } 2643 }
2638 } 2644 }
2639} 2645}