aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs b/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs
new file mode 100644
index 00000000..68f327f4
--- /dev/null
+++ b/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs
@@ -0,0 +1,84 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using WixToolset.Data.Tuples;
6
7 public static partial class TupleDefinitions
8 {
9 public static readonly IntermediateTupleDefinition WixDeltaPatchFile = new IntermediateTupleDefinition(
10 TupleDefinitionType.WixDeltaPatchFile,
11 new[]
12 {
13 new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.File_), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.RetainLengths), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.IgnoreOffsets), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.IgnoreLengths), IntermediateFieldType.String),
17 new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.RetainOffsets), IntermediateFieldType.String),
18 new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.SymbolPaths), IntermediateFieldType.String),
19 },
20 typeof(WixDeltaPatchFileTuple));
21 }
22}
23
24namespace WixToolset.Data.Tuples
25{
26 public enum WixDeltaPatchFileTupleFields
27 {
28 File_,
29 RetainLengths,
30 IgnoreOffsets,
31 IgnoreLengths,
32 RetainOffsets,
33 SymbolPaths,
34 }
35
36 public class WixDeltaPatchFileTuple : IntermediateTuple
37 {
38 public WixDeltaPatchFileTuple() : base(TupleDefinitions.WixDeltaPatchFile, null, null)
39 {
40 }
41
42 public WixDeltaPatchFileTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.WixDeltaPatchFile, sourceLineNumber, id)
43 {
44 }
45
46 public IntermediateField this[WixDeltaPatchFileTupleFields index] => this.Fields[(int)index];
47
48 public string File_
49 {
50 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.File_]?.Value;
51 set => this.Set((int)WixDeltaPatchFileTupleFields.File_, value);
52 }
53
54 public string RetainLengths
55 {
56 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.RetainLengths]?.Value;
57 set => this.Set((int)WixDeltaPatchFileTupleFields.RetainLengths, value);
58 }
59
60 public string IgnoreOffsets
61 {
62 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.IgnoreOffsets]?.Value;
63 set => this.Set((int)WixDeltaPatchFileTupleFields.IgnoreOffsets, value);
64 }
65
66 public string IgnoreLengths
67 {
68 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.IgnoreLengths]?.Value;
69 set => this.Set((int)WixDeltaPatchFileTupleFields.IgnoreLengths, value);
70 }
71
72 public string RetainOffsets
73 {
74 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.RetainOffsets]?.Value;
75 set => this.Set((int)WixDeltaPatchFileTupleFields.RetainOffsets, value);
76 }
77
78 public string SymbolPaths
79 {
80 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.SymbolPaths]?.Value;
81 set => this.Set((int)WixDeltaPatchFileTupleFields.SymbolPaths, value);
82 }
83 }
84} \ No newline at end of file