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 --- .../Tuples/MsiServiceConfigFailureActionsTuple.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs') diff --git a/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs b/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs index 85484381..8a0001ae 100644 --- a/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs +++ b/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs @@ -19,7 +19,7 @@ namespace WixToolset.Data new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Command), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Actions), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.DelayActions), IntermediateFieldType.String), - new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Component_), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.ComponentRef), IntermediateFieldType.String), }, typeof(MsiServiceConfigFailureActionsTuple)); } @@ -38,7 +38,7 @@ namespace WixToolset.Data.Tuples Command, Actions, DelayActions, - Component_, + ComponentRef, } public class MsiServiceConfigFailureActionsTuple : IntermediateTuple @@ -107,10 +107,10 @@ namespace WixToolset.Data.Tuples set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.DelayActions, value); } - public string Component_ + public string ComponentRef { - get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Component_]; - set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Component_, value); + get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.ComponentRef]; + set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.ComponentRef, value); } } } \ No newline at end of file -- cgit v1.2.3-55-g6feb