diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ComponentTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/ComponentTuple.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/ComponentTuple.cs b/src/WixToolset.Data/Tuples/ComponentTuple.cs index f573818e..67cb7042 100644 --- a/src/WixToolset.Data/Tuples/ComponentTuple.cs +++ b/src/WixToolset.Data/Tuples/ComponentTuple.cs | |||
@@ -10,7 +10,6 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.Component, | 10 | TupleDefinitionType.Component, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(ComponentTupleFields.Component), IntermediateFieldType.String), | ||
14 | new IntermediateFieldDefinition(nameof(ComponentTupleFields.ComponentId), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(ComponentTupleFields.ComponentId), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComponentTupleFields.Directory_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComponentTupleFields.Directory_), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ComponentTupleFields.Location), IntermediateFieldType.Number), | 15 | new IntermediateFieldDefinition(nameof(ComponentTupleFields.Location), IntermediateFieldType.Number), |
@@ -34,7 +33,6 @@ namespace WixToolset.Data.Tuples | |||
34 | { | 33 | { |
35 | public enum ComponentTupleFields | 34 | public enum ComponentTupleFields |
36 | { | 35 | { |
37 | Component, | ||
38 | ComponentId, | 36 | ComponentId, |
39 | Directory_, | 37 | Directory_, |
40 | Location, | 38 | Location, |
@@ -70,12 +68,6 @@ namespace WixToolset.Data.Tuples | |||
70 | 68 | ||
71 | public IntermediateField this[ComponentTupleFields index] => this.Fields[(int)index]; | 69 | public IntermediateField this[ComponentTupleFields index] => this.Fields[(int)index]; |
72 | 70 | ||
73 | public string Component | ||
74 | { | ||
75 | get => (string)this.Fields[(int)ComponentTupleFields.Component]; | ||
76 | set => this.Set((int)ComponentTupleFields.Component, value); | ||
77 | } | ||
78 | |||
79 | public string ComponentId | 71 | public string ComponentId |
80 | { | 72 | { |
81 | get => (string)this.Fields[(int)ComponentTupleFields.ComponentId]; | 73 | get => (string)this.Fields[(int)ComponentTupleFields.ComponentId]; |