aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/DuplicateFileTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/DuplicateFileTuple.cs40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs b/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs
index 08720383..87220e80 100644
--- a/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs
+++ b/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs
@@ -10,10 +10,10 @@ namespace WixToolset.Data
10 TupleDefinitionType.DuplicateFile, 10 TupleDefinitionType.DuplicateFile,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(DuplicateFileTupleFields.Component_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(DuplicateFileTupleFields.ComponentRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(DuplicateFileTupleFields.File_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(DuplicateFileTupleFields.FileRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(DuplicateFileTupleFields.DestName), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(DuplicateFileTupleFields.DestinationName), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(DuplicateFileTupleFields.DestFolder), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(DuplicateFileTupleFields.DestinationFolder), IntermediateFieldType.String),
17 }, 17 },
18 typeof(DuplicateFileTuple)); 18 typeof(DuplicateFileTuple));
19 } 19 }
@@ -23,10 +23,10 @@ namespace WixToolset.Data.Tuples
23{ 23{
24 public enum DuplicateFileTupleFields 24 public enum DuplicateFileTupleFields
25 { 25 {
26 Component_, 26 ComponentRef,
27 File_, 27 FileRef,
28 DestName, 28 DestinationName,
29 DestFolder, 29 DestinationFolder,
30 } 30 }
31 31
32 public class DuplicateFileTuple : IntermediateTuple 32 public class DuplicateFileTuple : IntermediateTuple
@@ -41,28 +41,28 @@ namespace WixToolset.Data.Tuples
41 41
42 public IntermediateField this[DuplicateFileTupleFields index] => this.Fields[(int)index]; 42 public IntermediateField this[DuplicateFileTupleFields index] => this.Fields[(int)index];
43 43
44 public string Component_ 44 public string ComponentRef
45 { 45 {
46 get => (string)this.Fields[(int)DuplicateFileTupleFields.Component_]; 46 get => (string)this.Fields[(int)DuplicateFileTupleFields.ComponentRef];
47 set => this.Set((int)DuplicateFileTupleFields.Component_, value); 47 set => this.Set((int)DuplicateFileTupleFields.ComponentRef, value);
48 } 48 }
49 49
50 public string File_ 50 public string FileRef
51 { 51 {
52 get => (string)this.Fields[(int)DuplicateFileTupleFields.File_]; 52 get => (string)this.Fields[(int)DuplicateFileTupleFields.FileRef];
53 set => this.Set((int)DuplicateFileTupleFields.File_, value); 53 set => this.Set((int)DuplicateFileTupleFields.FileRef, value);
54 } 54 }
55 55
56 public string DestName 56 public string DestinationName
57 { 57 {
58 get => (string)this.Fields[(int)DuplicateFileTupleFields.DestName]; 58 get => (string)this.Fields[(int)DuplicateFileTupleFields.DestinationName];
59 set => this.Set((int)DuplicateFileTupleFields.DestName, value); 59 set => this.Set((int)DuplicateFileTupleFields.DestinationName, value);
60 } 60 }
61 61
62 public string DestFolder 62 public string DestinationFolder
63 { 63 {
64 get => (string)this.Fields[(int)DuplicateFileTupleFields.DestFolder]; 64 get => (string)this.Fields[(int)DuplicateFileTupleFields.DestinationFolder];
65 set => this.Set((int)DuplicateFileTupleFields.DestFolder, value); 65 set => this.Set((int)DuplicateFileTupleFields.DestinationFolder, value);
66 } 66 }
67 } 67 }
68} \ No newline at end of file 68} \ No newline at end of file