diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-07 17:48:46 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-07 20:38:38 +1000 |
commit | 75f30802e00401df576ba351a24b0d26711e900e (patch) | |
tree | 6102575664d0a9d3d36509459f5cbbf744b49701 /src/wixext/Tuples | |
parent | bee269e29d80e1f4b7df60b92808780f7489183d (diff) | |
download | wix-75f30802e00401df576ba351a24b0d26711e900e.tar.gz wix-75f30802e00401df576ba351a24b0d26711e900e.tar.bz2 wix-75f30802e00401df576ba351a24b0d26711e900e.zip |
Modernize UtilCompiler.
Diffstat (limited to 'src/wixext/Tuples')
-rw-r--r-- | src/wixext/Tuples/GroupTuple.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/wixext/Tuples/GroupTuple.cs b/src/wixext/Tuples/GroupTuple.cs index 6061b1f4..2b270103 100644 --- a/src/wixext/Tuples/GroupTuple.cs +++ b/src/wixext/Tuples/GroupTuple.cs | |||
@@ -11,7 +11,6 @@ namespace WixToolset.Util | |||
11 | UtilTupleDefinitionType.Group.ToString(), | 11 | UtilTupleDefinitionType.Group.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(GroupTupleFields.Group), IntermediateFieldType.String), | ||
15 | new IntermediateFieldDefinition(nameof(GroupTupleFields.ComponentRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(GroupTupleFields.ComponentRef), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(GroupTupleFields.Name), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(GroupTupleFields.Name), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(GroupTupleFields.Domain), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(GroupTupleFields.Domain), IntermediateFieldType.String), |
@@ -26,7 +25,6 @@ namespace WixToolset.Util.Tuples | |||
26 | 25 | ||
27 | public enum GroupTupleFields | 26 | public enum GroupTupleFields |
28 | { | 27 | { |
29 | Group, | ||
30 | ComponentRef, | 28 | ComponentRef, |
31 | Name, | 29 | Name, |
32 | Domain, | 30 | Domain, |
@@ -44,12 +42,6 @@ namespace WixToolset.Util.Tuples | |||
44 | 42 | ||
45 | public IntermediateField this[GroupTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[GroupTupleFields index] => this.Fields[(int)index]; |
46 | 44 | ||
47 | public string Group | ||
48 | { | ||
49 | get => this.Fields[(int)GroupTupleFields.Group].AsString(); | ||
50 | set => this.Set((int)GroupTupleFields.Group, value); | ||
51 | } | ||
52 | |||
53 | public string ComponentRef | 45 | public string ComponentRef |
54 | { | 46 | { |
55 | get => this.Fields[(int)GroupTupleFields.ComponentRef].AsString(); | 47 | get => this.Fields[(int)GroupTupleFields.ComponentRef].AsString(); |