aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ServiceControlTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 14:45:33 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commitb36433623fcac28cf620868430d49bc36fca2963 (patch)
tree08f26c45c3d80ce665eade49ee7b542bf71da81c /src/WixToolset.Data/Tuples/ServiceControlTuple.cs
parent109ee5a02f9cec4775697b43655674fc70f4127a (diff)
downloadwix-b36433623fcac28cf620868430d49bc36fca2963.tar.gz
wix-b36433623fcac28cf620868430d49bc36fca2963.tar.bz2
wix-b36433623fcac28cf620868430d49bc36fca2963.zip
Use "Ref" instead of "_" as the reference convention
Diffstat (limited to 'src/WixToolset.Data/Tuples/ServiceControlTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ServiceControlTuple.cs10
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