aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ServiceInstallTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/ServiceInstallTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ServiceInstallTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ServiceInstallTuple.cs b/src/WixToolset.Data/Tuples/ServiceInstallTuple.cs
index a055e46e..8b9410b4 100644
--- a/src/WixToolset.Data/Tuples/ServiceInstallTuple.cs
+++ b/src/WixToolset.Data/Tuples/ServiceInstallTuple.cs
@@ -20,7 +20,7 @@ namespace WixToolset.Data
20 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.StartName), IntermediateFieldType.String), 20 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.StartName), IntermediateFieldType.String),
21 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Password), IntermediateFieldType.String), 21 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Password), IntermediateFieldType.String),
22 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Arguments), IntermediateFieldType.String), 22 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Arguments), IntermediateFieldType.String),
23 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Component_), IntermediateFieldType.String), 23 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.ComponentRef), IntermediateFieldType.String),
24 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Description), IntermediateFieldType.String), 24 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Description), IntermediateFieldType.String),
25 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Interactive), IntermediateFieldType.Bool), 25 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Interactive), IntermediateFieldType.Bool),
26 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Vital), IntermediateFieldType.Bool), 26 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Vital), IntermediateFieldType.Bool),
@@ -43,7 +43,7 @@ namespace WixToolset.Data.Tuples
43 StartName, 43 StartName,
44 Password, 44 Password,
45 Arguments, 45 Arguments,
46 Component_, 46 ComponentRef,
47 Description, 47 Description,
48 Interactive, 48 Interactive,
49 Vital, 49 Vital,
@@ -146,10 +146,10 @@ namespace WixToolset.Data.Tuples
146 set => this.Set((int)ServiceInstallTupleFields.Arguments, value); 146 set => this.Set((int)ServiceInstallTupleFields.Arguments, value);
147 } 147 }
148 148
149 public string Component_ 149 public string ComponentRef
150 { 150 {
151 get => (string)this.Fields[(int)ServiceInstallTupleFields.Component_]; 151 get => (string)this.Fields[(int)ServiceInstallTupleFields.ComponentRef];
152 set => this.Set((int)ServiceInstallTupleFields.Component_, value); 152 set => this.Set((int)ServiceInstallTupleFields.ComponentRef, value);
153 } 153 }
154 154
155 public string Description 155 public string Description