aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/GroupTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/GroupTuple.cs')
-rw-r--r--src/wixext/Tuples/GroupTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/Tuples/GroupTuple.cs b/src/wixext/Tuples/GroupTuple.cs
index 97335714..6061b1f4 100644
--- a/src/wixext/Tuples/GroupTuple.cs
+++ b/src/wixext/Tuples/GroupTuple.cs
@@ -12,7 +12,7 @@ namespace WixToolset.Util
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(GroupTupleFields.Group), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(GroupTupleFields.Group), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(GroupTupleFields.Component_), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(GroupTupleFields.ComponentRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(GroupTupleFields.Name), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(GroupTupleFields.Name), IntermediateFieldType.String),
17 new IntermediateFieldDefinition(nameof(GroupTupleFields.Domain), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(GroupTupleFields.Domain), IntermediateFieldType.String),
18 }, 18 },
@@ -27,7 +27,7 @@ namespace WixToolset.Util.Tuples
27 public enum GroupTupleFields 27 public enum GroupTupleFields
28 { 28 {
29 Group, 29 Group,
30 Component_, 30 ComponentRef,
31 Name, 31 Name,
32 Domain, 32 Domain,
33 } 33 }
@@ -50,10 +50,10 @@ namespace WixToolset.Util.Tuples
50 set => this.Set((int)GroupTupleFields.Group, value); 50 set => this.Set((int)GroupTupleFields.Group, value);
51 } 51 }
52 52
53 public string Component_ 53 public string ComponentRef
54 { 54 {
55 get => this.Fields[(int)GroupTupleFields.Component_].AsString(); 55 get => this.Fields[(int)GroupTupleFields.ComponentRef].AsString();
56 set => this.Set((int)GroupTupleFields.Component_, value); 56 set => this.Set((int)GroupTupleFields.ComponentRef, value);
57 } 57 }
58 58
59 public string Name 59 public string Name