aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/ServiceConfigTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/ServiceConfigTuple.cs')
-rw-r--r--src/wixext/Tuples/ServiceConfigTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/Tuples/ServiceConfigTuple.cs b/src/wixext/Tuples/ServiceConfigTuple.cs
index 74d96bca..e5fc3992 100644
--- a/src/wixext/Tuples/ServiceConfigTuple.cs
+++ b/src/wixext/Tuples/ServiceConfigTuple.cs
@@ -12,7 +12,7 @@ namespace WixToolset.Util
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.ServiceName), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.ServiceName), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.Component_), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.ComponentRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.NewService), IntermediateFieldType.Number), 16 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.NewService), IntermediateFieldType.Number),
17 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.FirstFailureActionType), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.FirstFailureActionType), IntermediateFieldType.String),
18 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.SecondFailureActionType), IntermediateFieldType.String), 18 new IntermediateFieldDefinition(nameof(ServiceConfigTupleFields.SecondFailureActionType), IntermediateFieldType.String),
@@ -33,7 +33,7 @@ namespace WixToolset.Util.Tuples
33 public enum ServiceConfigTupleFields 33 public enum ServiceConfigTupleFields
34 { 34 {
35 ServiceName, 35 ServiceName,
36 Component_, 36 ComponentRef,
37 NewService, 37 NewService,
38 FirstFailureActionType, 38 FirstFailureActionType,
39 SecondFailureActionType, 39 SecondFailureActionType,
@@ -62,10 +62,10 @@ namespace WixToolset.Util.Tuples
62 set => this.Set((int)ServiceConfigTupleFields.ServiceName, value); 62 set => this.Set((int)ServiceConfigTupleFields.ServiceName, value);
63 } 63 }
64 64
65 public string Component_ 65 public string ComponentRef
66 { 66 {
67 get => this.Fields[(int)ServiceConfigTupleFields.Component_].AsString(); 67 get => this.Fields[(int)ServiceConfigTupleFields.ComponentRef].AsString();
68 set => this.Set((int)ServiceConfigTupleFields.Component_, value); 68 set => this.Set((int)ServiceConfigTupleFields.ComponentRef, value);
69 } 69 }
70 70
71 public int NewService 71 public int NewService