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/ServiceInstallTuple.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Data/Tuples/ServiceInstallTuple.cs') 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 new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.StartName), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Password), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Arguments), IntermediateFieldType.String), - new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Component_), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.ComponentRef), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Description), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Interactive), IntermediateFieldType.Bool), new IntermediateFieldDefinition(nameof(ServiceInstallTupleFields.Vital), IntermediateFieldType.Bool), @@ -43,7 +43,7 @@ namespace WixToolset.Data.Tuples StartName, Password, Arguments, - Component_, + ComponentRef, Description, Interactive, Vital, @@ -146,10 +146,10 @@ namespace WixToolset.Data.Tuples set => this.Set((int)ServiceInstallTupleFields.Arguments, value); } - public string Component_ + public string ComponentRef { - get => (string)this.Fields[(int)ServiceInstallTupleFields.Component_]; - set => this.Set((int)ServiceInstallTupleFields.Component_, value); + get => (string)this.Fields[(int)ServiceInstallTupleFields.ComponentRef]; + set => this.Set((int)ServiceInstallTupleFields.ComponentRef, value); } public string Description -- cgit v1.2.3-55-g6feb