aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixSearchTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/WixSearchTuple.cs8
1 files changed, 8 insertions, 0 deletions
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
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Variable), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Variable), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Condition), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Condition), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.BundleExtensionRef), IntermediateFieldType.String),
15 }, 16 },
16 typeof(WixSearchTuple)); 17 typeof(WixSearchTuple));
17 } 18 }
@@ -23,6 +24,7 @@ namespace WixToolset.Data.Tuples
23 { 24 {
24 Variable, 25 Variable,
25 Condition, 26 Condition,
27 BundleExtensionRef,
26 } 28 }
27 29
28 public class WixSearchTuple : IntermediateTuple 30 public class WixSearchTuple : IntermediateTuple
@@ -48,5 +50,11 @@ namespace WixToolset.Data.Tuples
48 get => (string)this.Fields[(int)WixSearchTupleFields.Condition]; 50 get => (string)this.Fields[(int)WixSearchTupleFields.Condition];
49 set => this.Set((int)WixSearchTupleFields.Condition, value); 51 set => this.Set((int)WixSearchTupleFields.Condition, value);
50 } 52 }
53
54 public string BundleExtensionRef
55 {
56 get => (string)this.Fields[(int)WixSearchTupleFields.BundleExtensionRef];
57 set => this.Set((int)WixSearchTupleFields.BundleExtensionRef, value);
58 }
51 } 59 }
52} \ No newline at end of file 60} \ No newline at end of file