diff options
Diffstat (limited to 'src/wixext/Tuples/WixBalPackageInfoTuple.cs')
-rw-r--r-- | src/wixext/Tuples/WixBalPackageInfoTuple.cs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/wixext/Tuples/WixBalPackageInfoTuple.cs b/src/wixext/Tuples/WixBalPackageInfoTuple.cs index 32be3105..b09cb191 100644 --- a/src/wixext/Tuples/WixBalPackageInfoTuple.cs +++ b/src/wixext/Tuples/WixBalPackageInfoTuple.cs | |||
@@ -3,53 +3,53 @@ | |||
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 WixBalPackageInfo = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixBalPackageInfo = new IntermediateSymbolDefinition( |
11 | BalTupleDefinitionType.WixBalPackageInfo.ToString(), | 11 | BalSymbolDefinitionType.WixBalPackageInfo.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixBalPackageInfoTupleFields.PackageId), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixBalPackageInfoSymbolFields.PackageId), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(WixBalPackageInfoTupleFields.DisplayInternalUICondition), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixBalPackageInfoSymbolFields.DisplayInternalUICondition), IntermediateFieldType.String), |
16 | }, | 16 | }, |
17 | typeof(WixBalPackageInfoTuple)); | 17 | typeof(WixBalPackageInfoSymbol)); |
18 | } | 18 | } |
19 | } | 19 | } |
20 | 20 | ||
21 | namespace WixToolset.Bal.Tuples | 21 | namespace WixToolset.Bal.Symbols |
22 | { | 22 | { |
23 | using WixToolset.Data; | 23 | using WixToolset.Data; |
24 | 24 | ||
25 | public enum WixBalPackageInfoTupleFields | 25 | public enum WixBalPackageInfoSymbolFields |
26 | { | 26 | { |
27 | PackageId, | 27 | PackageId, |
28 | DisplayInternalUICondition, | 28 | DisplayInternalUICondition, |
29 | } | 29 | } |
30 | 30 | ||
31 | public class WixBalPackageInfoTuple : IntermediateTuple | 31 | public class WixBalPackageInfoSymbol : IntermediateSymbol |
32 | { | 32 | { |
33 | public WixBalPackageInfoTuple() : base(BalTupleDefinitions.WixBalPackageInfo, null, null) | 33 | public WixBalPackageInfoSymbol() : base(BalSymbolDefinitions.WixBalPackageInfo, null, null) |
34 | { | 34 | { |
35 | } | 35 | } |
36 | 36 | ||
37 | public WixBalPackageInfoTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixBalPackageInfo, sourceLineNumber, id) | 37 | public WixBalPackageInfoSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixBalPackageInfo, sourceLineNumber, id) |
38 | { | 38 | { |
39 | } | 39 | } |
40 | 40 | ||
41 | public IntermediateField this[WixBalPackageInfoTupleFields index] => this.Fields[(int)index]; | 41 | public IntermediateField this[WixBalPackageInfoSymbolFields index] => this.Fields[(int)index]; |
42 | 42 | ||
43 | public string PackageId | 43 | public string PackageId |
44 | { | 44 | { |
45 | get => this.Fields[(int)WixBalPackageInfoTupleFields.PackageId].AsString(); | 45 | get => this.Fields[(int)WixBalPackageInfoSymbolFields.PackageId].AsString(); |
46 | set => this.Set((int)WixBalPackageInfoTupleFields.PackageId, value); | 46 | set => this.Set((int)WixBalPackageInfoSymbolFields.PackageId, value); |
47 | } | 47 | } |
48 | 48 | ||
49 | public string DisplayInternalUICondition | 49 | public string DisplayInternalUICondition |
50 | { | 50 | { |
51 | get => this.Fields[(int)WixBalPackageInfoTupleFields.DisplayInternalUICondition].AsString(); | 51 | get => this.Fields[(int)WixBalPackageInfoSymbolFields.DisplayInternalUICondition].AsString(); |
52 | set => this.Set((int)WixBalPackageInfoTupleFields.DisplayInternalUICondition, value); | 52 | set => this.Set((int)WixBalPackageInfoSymbolFields.DisplayInternalUICondition, value); |
53 | } | 53 | } |
54 | } | 54 | } |
55 | } | 55 | } |