aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixProductSearchTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixProductSearchTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixProductSearchTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixProductSearchTuple.cs b/src/WixToolset.Data/Tuples/WixProductSearchTuple.cs
index 1cd44a6a..4a13f47d 100644
--- a/src/WixToolset.Data/Tuples/WixProductSearchTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixProductSearchTuple.cs
@@ -10,7 +10,7 @@ namespace WixToolset.Data
10 TupleDefinitionType.WixProductSearch, 10 TupleDefinitionType.WixProductSearch,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixProductSearchTupleFields.WixSearch_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixProductSearchTupleFields.WixSearchRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixProductSearchTupleFields.Guid), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixProductSearchTupleFields.Guid), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixProductSearchTupleFields.Attributes), IntermediateFieldType.Number), 15 new IntermediateFieldDefinition(nameof(WixProductSearchTupleFields.Attributes), IntermediateFieldType.Number),
16 }, 16 },
@@ -22,7 +22,7 @@ namespace WixToolset.Data.Tuples
22{ 22{
23 public enum WixProductSearchTupleFields 23 public enum WixProductSearchTupleFields
24 { 24 {
25 WixSearch_, 25 WixSearchRef,
26 Guid, 26 Guid,
27 Attributes, 27 Attributes,
28 } 28 }
@@ -39,10 +39,10 @@ namespace WixToolset.Data.Tuples
39 39
40 public IntermediateField this[WixProductSearchTupleFields index] => this.Fields[(int)index]; 40 public IntermediateField this[WixProductSearchTupleFields index] => this.Fields[(int)index];
41 41
42 public string WixSearch_ 42 public string WixSearchRef
43 { 43 {
44 get => (string)this.Fields[(int)WixProductSearchTupleFields.WixSearch_]; 44 get => (string)this.Fields[(int)WixProductSearchTupleFields.WixSearchRef];
45 set => this.Set((int)WixProductSearchTupleFields.WixSearch_, value); 45 set => this.Set((int)WixProductSearchTupleFields.WixSearchRef, value);
46 } 46 }
47 47
48 public string Guid 48 public string Guid