From b36433623fcac28cf620868430d49bc36fca2963 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 22 May 2019 14:45:33 -0700 Subject: Use "Ref" instead of "_" as the reference convention --- src/WixToolset.Data/Tuples/ServiceControlTuple.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Data/Tuples/ServiceControlTuple.cs') 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 new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.UninstallStop), IntermediateFieldType.Bool), new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Arguments), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Wait), IntermediateFieldType.Bool), - new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Component_), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.ComponentRef), IntermediateFieldType.String), }, typeof(ServiceControlTuple)); } @@ -40,7 +40,7 @@ namespace WixToolset.Data.Tuples UninstallStop, Arguments, Wait, - Component_, + ComponentRef, } public class ServiceControlTuple : IntermediateTuple @@ -115,10 +115,10 @@ namespace WixToolset.Data.Tuples set => this.Set((int)ServiceControlTupleFields.Wait, value); } - public string Component_ + public string ComponentRef { - get => (string)this.Fields[(int)ServiceControlTupleFields.Component_]; - set => this.Set((int)ServiceControlTupleFields.Component_, value); + get => (string)this.Fields[(int)ServiceControlTupleFields.ComponentRef]; + set => this.Set((int)ServiceControlTupleFields.ComponentRef, value); } } } \ No newline at end of file -- cgit v1.2.3-55-g6feb