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/MsiServiceConfigTuple.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs') diff --git a/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs b/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs index b0a58d9f..4943c245 100644 --- a/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs +++ b/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs @@ -16,7 +16,7 @@ namespace WixToolset.Data new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.OnUninstall), IntermediateFieldType.Bool), new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.ConfigType), IntermediateFieldType.Number), new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.Argument), IntermediateFieldType.String), - new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.Component_), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.ComponentRef), IntermediateFieldType.String), }, typeof(MsiServiceConfigTuple)); } @@ -33,7 +33,7 @@ namespace WixToolset.Data.Tuples OnUninstall, ConfigType, Argument, - Component_, + ComponentRef, } public enum MsiServiceConfigType @@ -93,10 +93,10 @@ namespace WixToolset.Data.Tuples set => this.Set((int)MsiServiceConfigTupleFields.Argument, value); } - public string Component_ + public string ComponentRef { - get => (string)this.Fields[(int)MsiServiceConfigTupleFields.Component_]; - set => this.Set((int)MsiServiceConfigTupleFields.Component_, value); + get => (string)this.Fields[(int)MsiServiceConfigTupleFields.ComponentRef]; + set => this.Set((int)MsiServiceConfigTupleFields.ComponentRef, value); } } } \ No newline at end of file -- cgit v1.2.3-55-g6feb