diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/ServiceControlTuple.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/ServiceControlTuple.cs b/src/WixToolset.Data/Tuples/ServiceControlTuple.cs index 113d71db..e34de0df 100644 --- a/src/WixToolset.Data/Tuples/ServiceControlTuple.cs +++ b/src/WixToolset.Data/Tuples/ServiceControlTuple.cs | |||
@@ -10,7 +10,6 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.ServiceControl, | 10 | TupleDefinitionType.ServiceControl, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.ServiceControl), IntermediateFieldType.String), | ||
14 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Name), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Name), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.InstallRemove), IntermediateFieldType.Bool), | 14 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.InstallRemove), IntermediateFieldType.Bool), |
16 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.UninstallRemove), IntermediateFieldType.Bool), | 15 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.UninstallRemove), IntermediateFieldType.Bool), |
@@ -30,7 +29,6 @@ namespace WixToolset.Data.Tuples | |||
30 | { | 29 | { |
31 | public enum ServiceControlTupleFields | 30 | public enum ServiceControlTupleFields |
32 | { | 31 | { |
33 | ServiceControl, | ||
34 | Name, | 32 | Name, |
35 | InstallRemove, | 33 | InstallRemove, |
36 | UninstallRemove, | 34 | UninstallRemove, |
@@ -55,12 +53,6 @@ namespace WixToolset.Data.Tuples | |||
55 | 53 | ||
56 | public IntermediateField this[ServiceControlTupleFields index] => this.Fields[(int)index]; | 54 | public IntermediateField this[ServiceControlTupleFields index] => this.Fields[(int)index]; |
57 | 55 | ||
58 | public string ServiceControl | ||
59 | { | ||
60 | get => (string)this.Fields[(int)ServiceControlTupleFields.ServiceControl]; | ||
61 | set => this.Set((int)ServiceControlTupleFields.ServiceControl, value); | ||
62 | } | ||
63 | |||
64 | public string Name | 56 | public string Name |
65 | { | 57 | { |
66 | get => (string)this.Fields[(int)ServiceControlTupleFields.Name]; | 58 | get => (string)this.Fields[(int)ServiceControlTupleFields.Name]; |