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/FeatureComponentsTuple.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs') diff --git a/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs b/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs index 33f17ee9..1bda9c4c 100644 --- a/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs +++ b/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs @@ -10,8 +10,8 @@ namespace WixToolset.Data TupleDefinitionType.FeatureComponents, new[] { - new IntermediateFieldDefinition(nameof(FeatureComponentsTupleFields.Feature_), IntermediateFieldType.String), - new IntermediateFieldDefinition(nameof(FeatureComponentsTupleFields.Component_), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(FeatureComponentsTupleFields.FeatureRef), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(FeatureComponentsTupleFields.ComponentRef), IntermediateFieldType.String), }, typeof(FeatureComponentsTuple)); } @@ -21,8 +21,8 @@ namespace WixToolset.Data.Tuples { public enum FeatureComponentsTupleFields { - Feature_, - Component_, + FeatureRef, + ComponentRef, } public class FeatureComponentsTuple : IntermediateTuple @@ -37,16 +37,16 @@ namespace WixToolset.Data.Tuples public IntermediateField this[FeatureComponentsTupleFields index] => this.Fields[(int)index]; - public string Feature_ + public string FeatureRef { - get => (string)this.Fields[(int)FeatureComponentsTupleFields.Feature_]; - set => this.Set((int)FeatureComponentsTupleFields.Feature_, value); + get => (string)this.Fields[(int)FeatureComponentsTupleFields.FeatureRef]; + set => this.Set((int)FeatureComponentsTupleFields.FeatureRef, value); } - public string Component_ + public string ComponentRef { - get => (string)this.Fields[(int)FeatureComponentsTupleFields.Component_]; - set => this.Set((int)FeatureComponentsTupleFields.Component_, value); + get => (string)this.Fields[(int)FeatureComponentsTupleFields.ComponentRef]; + set => this.Set((int)FeatureComponentsTupleFields.ComponentRef, value); } } } \ No newline at end of file -- cgit v1.2.3-55-g6feb