aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/ErrorMessages.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-03-26 19:26:01 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-03-30 21:23:16 +1000
commit66b668b4c5d37f572dfca86446f7dddc5dd3d85f (patch)
tree8e63232c28c29c2467986c86ba049f94d8da7e7e /src/WixToolset.Data/ErrorMessages.cs
parent39df3cf47aa22abfea57a74b7f985f44cb9beba5 (diff)
downloadwix-66b668b4c5d37f572dfca86446f7dddc5dd3d85f.tar.gz
wix-66b668b4c5d37f572dfca86446f7dddc5dd3d85f.tar.bz2
wix-66b668b4c5d37f572dfca86446f7dddc5dd3d85f.zip
Add support for bundle extension searches.
Add MissingBundleSearch error message. Add BundleExtensionRef to WixSearchTuple. Add BundleExtensionSearchTupleDefinitionTag.
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 23d32b4f..4d972903 100644
--- a/src/WixToolset.Data/ErrorMessages.cs
+++ b/src/WixToolset.Data/ErrorMessages.cs
@@ -1469,6 +1469,11 @@ namespace WixToolset.Data
1469 return Message(null, Ids.MissingBundleInformation, "The Bundle is missing '{0}' data, and cannot continue.", data); 1469 return Message(null, Ids.MissingBundleInformation, "The Bundle is missing '{0}' data, and cannot continue.", data);
1470 } 1470 }
1471 1471
1472 public static Message MissingBundleSearch(SourceLineNumber sourceLineNumbers, string searchId)
1473 {
1474 return Message(sourceLineNumbers, Ids.MissingBundleSearch, "Bundle Search with id '{0}' has no corresponding implementation tuple.", searchId);
1475 }
1476
1472 public static Message MissingDependencyVersion(string packageId) 1477 public static Message MissingDependencyVersion(string packageId)
1473 { 1478 {
1474 return Message(null, Ids.MissingDependencyVersion, "The provider dependency version was not authored for the package with Id '{0}'. Please author the Provides/@Version attribute for this package.", packageId); 1479 return Message(null, Ids.MissingDependencyVersion, "The provider dependency version was not authored for the package with Id '{0}'. Please author the Provides/@Version attribute for this package.", packageId);
@@ -2658,6 +2663,7 @@ namespace WixToolset.Data
2658 CouldNotDetermineProductCodeFromTransformSummaryInfo = 394, 2663 CouldNotDetermineProductCodeFromTransformSummaryInfo = 394,
2659 IntermediatesMustBeCompiled = 395, 2664 IntermediatesMustBeCompiled = 395,
2660 IntermediatesMustBeResolved = 396, 2665 IntermediatesMustBeResolved = 396,
2666 MissingBundleSearch = 397,
2661 } 2667 }
2662 } 2668 }
2663} 2669}