aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/WixToolset.Data/Tuples/WixSearchTuple.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/WixSearchTuple.cs b/src/WixToolset.Data/Tuples/WixSearchTuple.cs
index 21970e40..fd1ae5bf 100644
--- a/src/WixToolset.Data/Tuples/WixSearchTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixSearchTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.WixSearch, 10 TupleDefinitionType.WixSearch,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.WixSearch), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Variable), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Variable), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Condition), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Condition), IntermediateFieldType.String),
16 }, 15 },
@@ -22,7 +21,6 @@ namespace WixToolset.Data.Tuples
22{ 21{
23 public enum WixSearchTupleFields 22 public enum WixSearchTupleFields
24 { 23 {
25 WixSearch,
26 Variable, 24 Variable,
27 Condition, 25 Condition,
28 } 26 }
@@ -39,12 +37,6 @@ namespace WixToolset.Data.Tuples
39 37
40 public IntermediateField this[WixSearchTupleFields index] => this.Fields[(int)index]; 38 public IntermediateField this[WixSearchTupleFields index] => this.Fields[(int)index];
41 39
42 public string WixSearch
43 {
44 get => (string)this.Fields[(int)WixSearchTupleFields.WixSearch];
45 set => this.Set((int)WixSearchTupleFields.WixSearch, value);
46 }
47
48 public string Variable 40 public string Variable
49 { 41 {
50 get => (string)this.Fields[(int)WixSearchTupleFields.Variable]; 42 get => (string)this.Fields[(int)WixSearchTupleFields.Variable];