diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/FileSFPCatalogTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/FileSFPCatalogTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
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 | |||
10 | TupleDefinitionType.FileSFPCatalog, | 10 | TupleDefinitionType.FileSFPCatalog, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(FileSFPCatalogTupleFields.File_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(FileSFPCatalogTupleFields.FileRef), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(FileSFPCatalogTupleFields.SFPCatalog_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(FileSFPCatalogTupleFields.SFPCatalogRef), IntermediateFieldType.String), |
15 | }, | 15 | }, |
16 | typeof(FileSFPCatalogTuple)); | 16 | typeof(FileSFPCatalogTuple)); |
17 | } | 17 | } |
@@ -21,8 +21,8 @@ namespace WixToolset.Data.Tuples | |||
21 | { | 21 | { |
22 | public enum FileSFPCatalogTupleFields | 22 | public enum FileSFPCatalogTupleFields |
23 | { | 23 | { |
24 | File_, | 24 | FileRef, |
25 | SFPCatalog_, | 25 | SFPCatalogRef, |
26 | } | 26 | } |
27 | 27 | ||
28 | public class FileSFPCatalogTuple : IntermediateTuple | 28 | public class FileSFPCatalogTuple : IntermediateTuple |
@@ -37,16 +37,16 @@ namespace WixToolset.Data.Tuples | |||
37 | 37 | ||
38 | public IntermediateField this[FileSFPCatalogTupleFields index] => this.Fields[(int)index]; | 38 | public IntermediateField this[FileSFPCatalogTupleFields index] => this.Fields[(int)index]; |
39 | 39 | ||
40 | public string File_ | 40 | public string FileRef |
41 | { | 41 | { |
42 | get => (string)this.Fields[(int)FileSFPCatalogTupleFields.File_]; | 42 | get => (string)this.Fields[(int)FileSFPCatalogTupleFields.FileRef]; |
43 | set => this.Set((int)FileSFPCatalogTupleFields.File_, value); | 43 | set => this.Set((int)FileSFPCatalogTupleFields.FileRef, value); |
44 | } | 44 | } |
45 | 45 | ||
46 | public string SFPCatalog_ | 46 | public string SFPCatalogRef |
47 | { | 47 | { |
48 | get => (string)this.Fields[(int)FileSFPCatalogTupleFields.SFPCatalog_]; | 48 | get => (string)this.Fields[(int)FileSFPCatalogTupleFields.SFPCatalogRef]; |
49 | set => this.Set((int)FileSFPCatalogTupleFields.SFPCatalog_, value); | 49 | set => this.Set((int)FileSFPCatalogTupleFields.SFPCatalogRef, value); |
50 | } | 50 | } |
51 | } | 51 | } |
52 | } \ No newline at end of file | 52 | } \ No newline at end of file |