diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs b/src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs new file mode 100644 index 00000000..2398b1da --- /dev/null +++ b/src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs | |||
@@ -0,0 +1,52 @@ | |||
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 | |||
3 | namespace WixToolset.Data | ||
4 | { | ||
5 | using WixToolset.Data.Tuples; | ||
6 | |||
7 | public static partial class TupleDefinitions | ||
8 | { | ||
9 | public static readonly IntermediateTupleDefinition WixBundleUpdate = new IntermediateTupleDefinition( | ||
10 | TupleDefinitionType.WixBundleUpdate, | ||
11 | new[] | ||
12 | { | ||
13 | new IntermediateFieldDefinition(nameof(WixBundleUpdateTupleFields.Location), IntermediateFieldType.String), | ||
14 | new IntermediateFieldDefinition(nameof(WixBundleUpdateTupleFields.Attributes), IntermediateFieldType.Number), | ||
15 | }, | ||
16 | typeof(WixBundleUpdateTuple)); | ||
17 | } | ||
18 | } | ||
19 | |||
20 | namespace WixToolset.Data.Tuples | ||
21 | { | ||
22 | public enum WixBundleUpdateTupleFields | ||
23 | { | ||
24 | Location, | ||
25 | Attributes, | ||
26 | } | ||
27 | |||
28 | public class WixBundleUpdateTuple : IntermediateTuple | ||
29 | { | ||
30 | public WixBundleUpdateTuple() : base(TupleDefinitions.WixBundleUpdate, null, null) | ||
31 | { | ||
32 | } | ||
33 | |||
34 | public WixBundleUpdateTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.WixBundleUpdate,sourceLineNumber,id) | ||
35 | { | ||
36 | } | ||
37 | |||
38 | public IntermediateField this[WixBundleUpdateTupleFields index] => this.Fields[(int)index]; | ||
39 | |||
40 | public string Location | ||
41 | { | ||
42 | get => (string)this.Fields[(int)WixBundleUpdateTupleFields.Location]?.Value; | ||
43 | set => this.Set((int)WixBundleUpdateTupleFields.Location, value); | ||
44 | } | ||
45 | |||
46 | public int Attributes | ||
47 | { | ||
48 | get => (int)this.Fields[(int)WixBundleUpdateTupleFields.Attributes]?.Value; | ||
49 | set => this.Set((int)WixBundleUpdateTupleFields.Attributes, value); | ||
50 | } | ||
51 | } | ||
52 | } \ No newline at end of file | ||