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/ComplusTuple.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Data/Tuples/ComplusTuple.cs') diff --git a/src/WixToolset.Data/Tuples/ComplusTuple.cs b/src/WixToolset.Data/Tuples/ComplusTuple.cs index f011bbd4..bd76c0d3 100644 --- a/src/WixToolset.Data/Tuples/ComplusTuple.cs +++ b/src/WixToolset.Data/Tuples/ComplusTuple.cs @@ -10,7 +10,7 @@ namespace WixToolset.Data TupleDefinitionType.Complus, new[] { - new IntermediateFieldDefinition(nameof(ComplusTupleFields.Component_), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(ComplusTupleFields.ComponentRef), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ComplusTupleFields.ExpType), IntermediateFieldType.Number), }, typeof(ComplusTuple)); @@ -21,7 +21,7 @@ namespace WixToolset.Data.Tuples { public enum ComplusTupleFields { - Component_, + ComponentRef, ExpType, } @@ -37,10 +37,10 @@ namespace WixToolset.Data.Tuples public IntermediateField this[ComplusTupleFields index] => this.Fields[(int)index]; - public string Component_ + public string ComponentRef { - get => (string)this.Fields[(int)ComplusTupleFields.Component_]; - set => this.Set((int)ComplusTupleFields.Component_, value); + get => (string)this.Fields[(int)ComplusTupleFields.ComponentRef]; + set => this.Set((int)ComplusTupleFields.ComponentRef, value); } public int ExpType -- cgit v1.2.3-55-g6feb