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