diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/WixDncOptionsTuple.cs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/wixext/Tuples/WixDncOptionsTuple.cs b/src/wixext/Tuples/WixDncOptionsTuple.cs index 8a36879b..b9a41c21 100644 --- a/src/wixext/Tuples/WixDncOptionsTuple.cs +++ b/src/wixext/Tuples/WixDncOptionsTuple.cs | |||
@@ -3,45 +3,45 @@ | |||
3 | namespace WixToolset.Bal | 3 | namespace WixToolset.Bal |
4 | { | 4 | { |
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.Bal.Tuples; | 6 | using WixToolset.Bal.Symbols; |
7 | 7 | ||
8 | public static partial class BalTupleDefinitions | 8 | public static partial class BalSymbolDefinitions |
9 | { | 9 | { |
10 | public static readonly IntermediateTupleDefinition WixDncOptions = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixDncOptions = new IntermediateSymbolDefinition( |
11 | BalTupleDefinitionType.WixDncOptions.ToString(), | 11 | BalSymbolDefinitionType.WixDncOptions.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixDncOptionsTupleFields.SelfContainedDeployment), IntermediateFieldType.Number), | 14 | new IntermediateFieldDefinition(nameof(WixDncOptionsSymbolFields.SelfContainedDeployment), IntermediateFieldType.Number), |
15 | }, | 15 | }, |
16 | typeof(WixDncOptionsTuple)); | 16 | typeof(WixDncOptionsSymbol)); |
17 | } | 17 | } |
18 | } | 18 | } |
19 | 19 | ||
20 | namespace WixToolset.Bal.Tuples | 20 | namespace WixToolset.Bal.Symbols |
21 | { | 21 | { |
22 | using WixToolset.Data; | 22 | using WixToolset.Data; |
23 | 23 | ||
24 | public enum WixDncOptionsTupleFields | 24 | public enum WixDncOptionsSymbolFields |
25 | { | 25 | { |
26 | SelfContainedDeployment, | 26 | SelfContainedDeployment, |
27 | } | 27 | } |
28 | 28 | ||
29 | public class WixDncOptionsTuple : IntermediateTuple | 29 | public class WixDncOptionsSymbol : IntermediateSymbol |
30 | { | 30 | { |
31 | public WixDncOptionsTuple() : base(BalTupleDefinitions.WixDncOptions, null, null) | 31 | public WixDncOptionsSymbol() : base(BalSymbolDefinitions.WixDncOptions, null, null) |
32 | { | 32 | { |
33 | } | 33 | } |
34 | 34 | ||
35 | public WixDncOptionsTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixDncOptions, sourceLineNumber, id) | 35 | public WixDncOptionsSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixDncOptions, sourceLineNumber, id) |
36 | { | 36 | { |
37 | } | 37 | } |
38 | 38 | ||
39 | public IntermediateField this[WixDncOptionsTupleFields index] => this.Fields[(int)index]; | 39 | public IntermediateField this[WixDncOptionsSymbolFields index] => this.Fields[(int)index]; |
40 | 40 | ||
41 | public int SelfContainedDeployment | 41 | public int SelfContainedDeployment |
42 | { | 42 | { |
43 | get => this.Fields[(int)WixDncOptionsTupleFields.SelfContainedDeployment].AsNumber(); | 43 | get => this.Fields[(int)WixDncOptionsSymbolFields.SelfContainedDeployment].AsNumber(); |
44 | set => this.Set((int)WixDncOptionsTupleFields.SelfContainedDeployment, value); | 44 | set => this.Set((int)WixDncOptionsSymbolFields.SelfContainedDeployment, value); |
45 | } | 45 | } |
46 | } | 46 | } |
47 | } \ No newline at end of file | 47 | } \ No newline at end of file |