From 66b668b4c5d37f572dfca86446f7dddc5dd3d85f Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Thu, 26 Mar 2020 19:26:01 +1000 Subject: Add support for bundle extension searches. Add MissingBundleSearch error message. Add BundleExtensionRef to WixSearchTuple. Add BundleExtensionSearchTupleDefinitionTag. --- src/WixToolset.Data/Tuples/WixSearchTuple.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/WixToolset.Data/Tuples') diff --git a/src/WixToolset.Data/Tuples/WixSearchTuple.cs b/src/WixToolset.Data/Tuples/WixSearchTuple.cs index fd1ae5bf..6f58f62e 100644 --- a/src/WixToolset.Data/Tuples/WixSearchTuple.cs +++ b/src/WixToolset.Data/Tuples/WixSearchTuple.cs @@ -12,6 +12,7 @@ namespace WixToolset.Data { new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Variable), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Condition), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(WixSearchTupleFields.BundleExtensionRef), IntermediateFieldType.String), }, typeof(WixSearchTuple)); } @@ -23,6 +24,7 @@ namespace WixToolset.Data.Tuples { Variable, Condition, + BundleExtensionRef, } public class WixSearchTuple : IntermediateTuple @@ -48,5 +50,11 @@ namespace WixToolset.Data.Tuples get => (string)this.Fields[(int)WixSearchTupleFields.Condition]; set => this.Set((int)WixSearchTupleFields.Condition, value); } + + public string BundleExtensionRef + { + get => (string)this.Fields[(int)WixSearchTupleFields.BundleExtensionRef]; + set => this.Set((int)WixSearchTupleFields.BundleExtensionRef, value); + } } } \ No newline at end of file -- cgit v1.2.3-55-g6feb