aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/wix/WixToolset.Data/ErrorMessages.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs
index 889d1762..e149d54a 100644
--- a/src/api/wix/WixToolset.Data/ErrorMessages.cs
+++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs
@@ -323,21 +323,6 @@ namespace WixToolset.Data
323 return Message(null, Ids.DuplicateSourcesForOutput, "Multiple source files ({0}) have resulted in the same output file '{1}'. This is likely because the source files only differ in extension or path. Rename the source files to avoid this problem.", sourceList, outputFile); 323 return Message(null, Ids.DuplicateSourcesForOutput, "Multiple source files ({0}) have resulted in the same output file '{1}'. This is likely because the source files only differ in extension or path. Rename the source files to avoid this problem.", sourceList, outputFile);
324 } 324 }
325 325
326 public static Message DuplicateSymbol(SourceLineNumber sourceLineNumbers, string symbolName)
327 {
328 return Message(sourceLineNumbers, Ids.DuplicateSymbol, "Duplicate symbol '{0}' found. This typically means that an Id is duplicated. Access modifiers (global, library, file, section) cannot prevent these conflicts. Ensure all your identifiers of a given type (Directory, File, etc.) are unique.", symbolName);
329 }
330
331 public static Message DuplicateSymbol(SourceLineNumber sourceLineNumbers, string symbolName, string referencingSourceLineNumber)
332 {
333 return Message(sourceLineNumbers, Ids.DuplicateSymbol, "Duplicate symbol '{0}' referenced by {1}. This typically means that an Id is duplicated. Ensure all your identifiers of a given type (Directory, File, etc.) are unique or use an access modifier to scope the identfier.", symbolName, referencingSourceLineNumber);
334 }
335
336 public static Message DuplicateSymbol2(SourceLineNumber sourceLineNumbers)
337 {
338 return Message(sourceLineNumbers, Ids.DuplicateSymbol2, "Location of symbol related to previous error.");
339 }
340
341 public static Message DuplicateTransform(string transform) 326 public static Message DuplicateTransform(string transform)
342 { 327 {
343 return Message(null, Ids.DuplicateTransform, "The transform {0} was included twice on the command line. Each transform can be applied to a patch only once.", transform); 328 return Message(null, Ids.DuplicateTransform, "The transform {0} was included twice on the command line. Each transform can be applied to a patch only once.", transform);
@@ -2369,8 +2354,6 @@ namespace WixToolset.Data
2369 InvalidDateTimeFormat = 88, 2354 InvalidDateTimeFormat = 88,
2370 MultipleEntrySections = 89, 2355 MultipleEntrySections = 89,
2371 MultipleEntrySections2 = 90, 2356 MultipleEntrySections2 = 90,
2372 DuplicateSymbol = 91,
2373 DuplicateSymbol2 = 92,
2374 MissingEntrySection = 93, 2357 MissingEntrySection = 93,
2375 UnresolvedReference = 94, 2358 UnresolvedReference = 94,
2376 MultiplePrimaryReferences = 95, 2359 MultiplePrimaryReferences = 95,