diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ServiceControlTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/ServiceControlTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ServiceControlTuple.cs b/src/WixToolset.Data/Tuples/ServiceControlTuple.cs index 6d57120a..113d71db 100644 --- a/src/WixToolset.Data/Tuples/ServiceControlTuple.cs +++ b/src/WixToolset.Data/Tuples/ServiceControlTuple.cs | |||
@@ -20,7 +20,7 @@ namespace WixToolset.Data | |||
20 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.UninstallStop), IntermediateFieldType.Bool), | 20 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.UninstallStop), IntermediateFieldType.Bool), |
21 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Arguments), IntermediateFieldType.String), | 21 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Arguments), IntermediateFieldType.String), |
22 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Wait), IntermediateFieldType.Bool), | 22 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Wait), IntermediateFieldType.Bool), |
23 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Component_), IntermediateFieldType.String), | 23 | new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.ComponentRef), IntermediateFieldType.String), |
24 | }, | 24 | }, |
25 | typeof(ServiceControlTuple)); | 25 | typeof(ServiceControlTuple)); |
26 | } | 26 | } |
@@ -40,7 +40,7 @@ namespace WixToolset.Data.Tuples | |||
40 | UninstallStop, | 40 | UninstallStop, |
41 | Arguments, | 41 | Arguments, |
42 | Wait, | 42 | Wait, |
43 | Component_, | 43 | ComponentRef, |
44 | } | 44 | } |
45 | 45 | ||
46 | public class ServiceControlTuple : IntermediateTuple | 46 | public class ServiceControlTuple : IntermediateTuple |
@@ -115,10 +115,10 @@ namespace WixToolset.Data.Tuples | |||
115 | set => this.Set((int)ServiceControlTupleFields.Wait, value); | 115 | set => this.Set((int)ServiceControlTupleFields.Wait, value); |
116 | } | 116 | } |
117 | 117 | ||
118 | public string Component_ | 118 | public string ComponentRef |
119 | { | 119 | { |
120 | get => (string)this.Fields[(int)ServiceControlTupleFields.Component_]; | 120 | get => (string)this.Fields[(int)ServiceControlTupleFields.ComponentRef]; |
121 | set => this.Set((int)ServiceControlTupleFields.Component_, value); | 121 | set => this.Set((int)ServiceControlTupleFields.ComponentRef, value); |
122 | } | 122 | } |
123 | } | 123 | } |
124 | } \ No newline at end of file | 124 | } \ No newline at end of file |