aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/WixFormatFilesTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/WixFormatFilesTuple.cs')
-rw-r--r--src/wixext/Tuples/WixFormatFilesTuple.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/wixext/Tuples/WixFormatFilesTuple.cs b/src/wixext/Tuples/WixFormatFilesTuple.cs
index 7fc092b0..8e7db0c6 100644
--- a/src/wixext/Tuples/WixFormatFilesTuple.cs
+++ b/src/wixext/Tuples/WixFormatFilesTuple.cs
@@ -11,8 +11,8 @@ namespace WixToolset.Util
11 UtilTupleDefinitionType.WixFormatFiles.ToString(), 11 UtilTupleDefinitionType.WixFormatFiles.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(WixFormatFilesTupleFields.Binary_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixFormatFilesTupleFields.BinaryRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixFormatFilesTupleFields.File_), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(WixFormatFilesTupleFields.FileRef), IntermediateFieldType.String),
16 }, 16 },
17 typeof(WixFormatFilesTuple)); 17 typeof(WixFormatFilesTuple));
18 } 18 }
@@ -24,8 +24,8 @@ namespace WixToolset.Util.Tuples
24 24
25 public enum WixFormatFilesTupleFields 25 public enum WixFormatFilesTupleFields
26 { 26 {
27 Binary_, 27 BinaryRef,
28 File_, 28 FileRef,
29 } 29 }
30 30
31 public class WixFormatFilesTuple : IntermediateTuple 31 public class WixFormatFilesTuple : IntermediateTuple
@@ -40,16 +40,16 @@ namespace WixToolset.Util.Tuples
40 40
41 public IntermediateField this[WixFormatFilesTupleFields index] => this.Fields[(int)index]; 41 public IntermediateField this[WixFormatFilesTupleFields index] => this.Fields[(int)index];
42 42
43 public string Binary_ 43 public string BinaryRef
44 { 44 {
45 get => this.Fields[(int)WixFormatFilesTupleFields.Binary_].AsString(); 45 get => this.Fields[(int)WixFormatFilesTupleFields.BinaryRef].AsString();
46 set => this.Set((int)WixFormatFilesTupleFields.Binary_, value); 46 set => this.Set((int)WixFormatFilesTupleFields.BinaryRef, value);
47 } 47 }
48 48
49 public string File_ 49 public string FileRef
50 { 50 {
51 get => this.Fields[(int)WixFormatFilesTupleFields.File_].AsString(); 51 get => this.Fields[(int)WixFormatFilesTupleFields.FileRef].AsString();
52 set => this.Set((int)WixFormatFilesTupleFields.File_, value); 52 set => this.Set((int)WixFormatFilesTupleFields.FileRef, value);
53 } 53 }
54 } 54 }
55} \ No newline at end of file 55} \ No newline at end of file