diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/PatchTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/PatchTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/PatchTuple.cs b/src/WixToolset.Data/Tuples/PatchTuple.cs index ca313410..5548a215 100644 --- a/src/WixToolset.Data/Tuples/PatchTuple.cs +++ b/src/WixToolset.Data/Tuples/PatchTuple.cs | |||
@@ -10,12 +10,12 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.Patch, | 10 | TupleDefinitionType.Patch, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(PatchTupleFields.File_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(PatchTupleFields.FileRef), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(PatchTupleFields.Sequence), IntermediateFieldType.Number), | 14 | new IntermediateFieldDefinition(nameof(PatchTupleFields.Sequence), IntermediateFieldType.Number), |
15 | new IntermediateFieldDefinition(nameof(PatchTupleFields.PatchSize), IntermediateFieldType.Number), | 15 | new IntermediateFieldDefinition(nameof(PatchTupleFields.PatchSize), IntermediateFieldType.Number), |
16 | new IntermediateFieldDefinition(nameof(PatchTupleFields.Attributes), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(PatchTupleFields.Attributes), IntermediateFieldType.Number), |
17 | new IntermediateFieldDefinition(nameof(PatchTupleFields.Header), IntermediateFieldType.Path), | 17 | new IntermediateFieldDefinition(nameof(PatchTupleFields.Header), IntermediateFieldType.Path), |
18 | new IntermediateFieldDefinition(nameof(PatchTupleFields.StreamRef_), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(PatchTupleFields.StreamRef), IntermediateFieldType.String), |
19 | }, | 19 | }, |
20 | typeof(PatchTuple)); | 20 | typeof(PatchTuple)); |
21 | } | 21 | } |
@@ -25,12 +25,12 @@ namespace WixToolset.Data.Tuples | |||
25 | { | 25 | { |
26 | public enum PatchTupleFields | 26 | public enum PatchTupleFields |
27 | { | 27 | { |
28 | File_, | 28 | FileRef, |
29 | Sequence, | 29 | Sequence, |
30 | PatchSize, | 30 | PatchSize, |
31 | Attributes, | 31 | Attributes, |
32 | Header, | 32 | Header, |
33 | StreamRef_, | 33 | StreamRef, |
34 | } | 34 | } |
35 | 35 | ||
36 | public class PatchTuple : IntermediateTuple | 36 | public class PatchTuple : IntermediateTuple |
@@ -45,10 +45,10 @@ namespace WixToolset.Data.Tuples | |||
45 | 45 | ||
46 | public IntermediateField this[PatchTupleFields index] => this.Fields[(int)index]; | 46 | public IntermediateField this[PatchTupleFields index] => this.Fields[(int)index]; |
47 | 47 | ||
48 | public string File_ | 48 | public string FileRef |
49 | { | 49 | { |
50 | get => (string)this.Fields[(int)PatchTupleFields.File_]; | 50 | get => (string)this.Fields[(int)PatchTupleFields.FileRef]; |
51 | set => this.Set((int)PatchTupleFields.File_, value); | 51 | set => this.Set((int)PatchTupleFields.FileRef, value); |
52 | } | 52 | } |
53 | 53 | ||
54 | public int Sequence | 54 | public int Sequence |
@@ -75,10 +75,10 @@ namespace WixToolset.Data.Tuples | |||
75 | set => this.Set((int)PatchTupleFields.Header, value); | 75 | set => this.Set((int)PatchTupleFields.Header, value); |
76 | } | 76 | } |
77 | 77 | ||
78 | public string StreamRef_ | 78 | public string StreamRef |
79 | { | 79 | { |
80 | get => (string)this.Fields[(int)PatchTupleFields.StreamRef_]; | 80 | get => (string)this.Fields[(int)PatchTupleFields.StreamRef]; |
81 | set => this.Set((int)PatchTupleFields.StreamRef_, value); | 81 | set => this.Set((int)PatchTupleFields.StreamRef, value); |
82 | } | 82 | } |
83 | } | 83 | } |
84 | } \ No newline at end of file | 84 | } \ No newline at end of file |