diff options
Diffstat (limited to 'src/wixext/Tuples')
-rw-r--r-- | src/wixext/Tuples/BalTupleDefinitions.cs | 60 | ||||
-rw-r--r-- | src/wixext/Tuples/WixBalBAFactoryAssemblyTuple.cs | 28 | ||||
-rw-r--r-- | src/wixext/Tuples/WixBalBAFunctionsTuple.cs | 28 | ||||
-rw-r--r-- | src/wixext/Tuples/WixBalConditionTuple.cs | 34 | ||||
-rw-r--r-- | src/wixext/Tuples/WixBalPackageInfoTuple.cs | 34 | ||||
-rw-r--r-- | src/wixext/Tuples/WixDncOptionsTuple.cs | 28 | ||||
-rw-r--r-- | src/wixext/Tuples/WixMbaPrereqInformationTuple.cs | 40 | ||||
-rw-r--r-- | src/wixext/Tuples/WixStdbaOptionsTuple.cs | 52 | ||||
-rw-r--r-- | src/wixext/Tuples/WixStdbaOverridableVariableTuple.cs | 28 |
9 files changed, 166 insertions, 166 deletions
diff --git a/src/wixext/Tuples/BalTupleDefinitions.cs b/src/wixext/Tuples/BalTupleDefinitions.cs index 08e7ba2a..90865621 100644 --- a/src/wixext/Tuples/BalTupleDefinitions.cs +++ b/src/wixext/Tuples/BalTupleDefinitions.cs | |||
@@ -6,7 +6,7 @@ namespace WixToolset.Bal | |||
6 | using WixToolset.Data; | 6 | using WixToolset.Data; |
7 | using WixToolset.Data.Burn; | 7 | using WixToolset.Data.Burn; |
8 | 8 | ||
9 | public enum BalTupleDefinitionType | 9 | public enum BalSymbolDefinitionType |
10 | { | 10 | { |
11 | WixBalBAFactoryAssembly, | 11 | WixBalBAFactoryAssembly, |
12 | WixBalBAFunctions, | 12 | WixBalBAFunctions, |
@@ -18,13 +18,13 @@ namespace WixToolset.Bal | |||
18 | WixStdbaOverridableVariable, | 18 | WixStdbaOverridableVariable, |
19 | } | 19 | } |
20 | 20 | ||
21 | public static partial class BalTupleDefinitions | 21 | public static partial class BalSymbolDefinitions |
22 | { | 22 | { |
23 | public static readonly Version Version = new Version("4.0.0"); | 23 | public static readonly Version Version = new Version("4.0.0"); |
24 | 24 | ||
25 | public static IntermediateTupleDefinition ByName(string name) | 25 | public static IntermediateSymbolDefinition ByName(string name) |
26 | { | 26 | { |
27 | if (!Enum.TryParse(name, out BalTupleDefinitionType type)) | 27 | if (!Enum.TryParse(name, out BalSymbolDefinitionType type)) |
28 | { | 28 | { |
29 | return null; | 29 | return null; |
30 | } | 30 | } |
@@ -32,49 +32,49 @@ namespace WixToolset.Bal | |||
32 | return ByType(type); | 32 | return ByType(type); |
33 | } | 33 | } |
34 | 34 | ||
35 | public static IntermediateTupleDefinition ByType(BalTupleDefinitionType type) | 35 | public static IntermediateSymbolDefinition ByType(BalSymbolDefinitionType type) |
36 | { | 36 | { |
37 | switch (type) | 37 | switch (type) |
38 | { | 38 | { |
39 | case BalTupleDefinitionType.WixBalBAFactoryAssembly: | 39 | case BalSymbolDefinitionType.WixBalBAFactoryAssembly: |
40 | return BalTupleDefinitions.WixBalBAFactoryAssembly; | 40 | return BalSymbolDefinitions.WixBalBAFactoryAssembly; |
41 | 41 | ||
42 | case BalTupleDefinitionType.WixBalBAFunctions: | 42 | case BalSymbolDefinitionType.WixBalBAFunctions: |
43 | return BalTupleDefinitions.WixBalBAFunctions; | 43 | return BalSymbolDefinitions.WixBalBAFunctions; |
44 | 44 | ||
45 | case BalTupleDefinitionType.WixBalCondition: | 45 | case BalSymbolDefinitionType.WixBalCondition: |
46 | return BalTupleDefinitions.WixBalCondition; | 46 | return BalSymbolDefinitions.WixBalCondition; |
47 | 47 | ||
48 | case BalTupleDefinitionType.WixBalPackageInfo: | 48 | case BalSymbolDefinitionType.WixBalPackageInfo: |
49 | return BalTupleDefinitions.WixBalPackageInfo; | 49 | return BalSymbolDefinitions.WixBalPackageInfo; |
50 | 50 | ||
51 | case BalTupleDefinitionType.WixDncOptions: | 51 | case BalSymbolDefinitionType.WixDncOptions: |
52 | return BalTupleDefinitions.WixDncOptions; | 52 | return BalSymbolDefinitions.WixDncOptions; |
53 | 53 | ||
54 | case BalTupleDefinitionType.WixMbaPrereqInformation: | 54 | case BalSymbolDefinitionType.WixMbaPrereqInformation: |
55 | return BalTupleDefinitions.WixMbaPrereqInformation; | 55 | return BalSymbolDefinitions.WixMbaPrereqInformation; |
56 | 56 | ||
57 | case BalTupleDefinitionType.WixStdbaOptions: | 57 | case BalSymbolDefinitionType.WixStdbaOptions: |
58 | return BalTupleDefinitions.WixStdbaOptions; | 58 | return BalSymbolDefinitions.WixStdbaOptions; |
59 | 59 | ||
60 | case BalTupleDefinitionType.WixStdbaOverridableVariable: | 60 | case BalSymbolDefinitionType.WixStdbaOverridableVariable: |
61 | return BalTupleDefinitions.WixStdbaOverridableVariable; | 61 | return BalSymbolDefinitions.WixStdbaOverridableVariable; |
62 | 62 | ||
63 | default: | 63 | default: |
64 | throw new ArgumentOutOfRangeException(nameof(type)); | 64 | throw new ArgumentOutOfRangeException(nameof(type)); |
65 | } | 65 | } |
66 | } | 66 | } |
67 | 67 | ||
68 | static BalTupleDefinitions() | 68 | static BalSymbolDefinitions() |
69 | { | 69 | { |
70 | WixBalBAFactoryAssembly.AddTag(BurnConstants.BootstrapperApplicationDataTupleDefinitionTag); | 70 | WixBalBAFactoryAssembly.AddTag(BurnConstants.BootstrapperApplicationDataSymbolDefinitionTag); |
71 | WixBalBAFunctions.AddTag(BurnConstants.BootstrapperApplicationDataTupleDefinitionTag); | 71 | WixBalBAFunctions.AddTag(BurnConstants.BootstrapperApplicationDataSymbolDefinitionTag); |
72 | WixBalCondition.AddTag(BurnConstants.BootstrapperApplicationDataTupleDefinitionTag); | 72 | WixBalCondition.AddTag(BurnConstants.BootstrapperApplicationDataSymbolDefinitionTag); |
73 | WixBalPackageInfo.AddTag(BurnConstants.BootstrapperApplicationDataTupleDefinitionTag); | 73 | WixBalPackageInfo.AddTag(BurnConstants.BootstrapperApplicationDataSymbolDefinitionTag); |
74 | WixDncOptions.AddTag(BurnConstants.BootstrapperApplicationDataTupleDefinitionTag); | 74 | WixDncOptions.AddTag(BurnConstants.BootstrapperApplicationDataSymbolDefinitionTag); |
75 | WixMbaPrereqInformation.AddTag(BurnConstants.BootstrapperApplicationDataTupleDefinitionTag); | 75 | WixMbaPrereqInformation.AddTag(BurnConstants.BootstrapperApplicationDataSymbolDefinitionTag); |
76 | WixStdbaOptions.AddTag(BurnConstants.BootstrapperApplicationDataTupleDefinitionTag); | 76 | WixStdbaOptions.AddTag(BurnConstants.BootstrapperApplicationDataSymbolDefinitionTag); |
77 | WixStdbaOverridableVariable.AddTag(BurnConstants.BootstrapperApplicationDataTupleDefinitionTag); | 77 | WixStdbaOverridableVariable.AddTag(BurnConstants.BootstrapperApplicationDataSymbolDefinitionTag); |
78 | } | 78 | } |
79 | } | 79 | } |
80 | } | 80 | } |
diff --git a/src/wixext/Tuples/WixBalBAFactoryAssemblyTuple.cs b/src/wixext/Tuples/WixBalBAFactoryAssemblyTuple.cs index e33ea562..0423a52f 100644 --- a/src/wixext/Tuples/WixBalBAFactoryAssemblyTuple.cs +++ b/src/wixext/Tuples/WixBalBAFactoryAssemblyTuple.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 WixBalBAFactoryAssembly = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixBalBAFactoryAssembly = new IntermediateSymbolDefinition( |
11 | BalTupleDefinitionType.WixBalBAFactoryAssembly.ToString(), | 11 | BalSymbolDefinitionType.WixBalBAFactoryAssembly.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixBalBAFactoryTupleFields.PayloadId), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixBalBAFactorySymbolFields.PayloadId), IntermediateFieldType.String), |
15 | }, | 15 | }, |
16 | typeof(WixBalBAFactoryAssemblyTuple)); | 16 | typeof(WixBalBAFactoryAssemblySymbol)); |
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 WixBalBAFactoryTupleFields | 24 | public enum WixBalBAFactorySymbolFields |
25 | { | 25 | { |
26 | PayloadId, | 26 | PayloadId, |
27 | } | 27 | } |
28 | 28 | ||
29 | public class WixBalBAFactoryAssemblyTuple : IntermediateTuple | 29 | public class WixBalBAFactoryAssemblySymbol : IntermediateSymbol |
30 | { | 30 | { |
31 | public WixBalBAFactoryAssemblyTuple() : base(BalTupleDefinitions.WixBalBAFactoryAssembly, null, null) | 31 | public WixBalBAFactoryAssemblySymbol() : base(BalSymbolDefinitions.WixBalBAFactoryAssembly, null, null) |
32 | { | 32 | { |
33 | } | 33 | } |
34 | 34 | ||
35 | public WixBalBAFactoryAssemblyTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixBalBAFactoryAssembly, sourceLineNumber, id) | 35 | public WixBalBAFactoryAssemblySymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixBalBAFactoryAssembly, sourceLineNumber, id) |
36 | { | 36 | { |
37 | } | 37 | } |
38 | 38 | ||
39 | public IntermediateField this[WixBalBAFactoryTupleFields index] => this.Fields[(int)index]; | 39 | public IntermediateField this[WixBalBAFactorySymbolFields index] => this.Fields[(int)index]; |
40 | 40 | ||
41 | public string PayloadId | 41 | public string PayloadId |
42 | { | 42 | { |
43 | get => this.Fields[(int)WixBalBAFactoryTupleFields.PayloadId].AsString(); | 43 | get => this.Fields[(int)WixBalBAFactorySymbolFields.PayloadId].AsString(); |
44 | set => this.Set((int)WixBalBAFactoryTupleFields.PayloadId, value); | 44 | set => this.Set((int)WixBalBAFactorySymbolFields.PayloadId, value); |
45 | } | 45 | } |
46 | } | 46 | } |
47 | } \ No newline at end of file | 47 | } \ No newline at end of file |
diff --git a/src/wixext/Tuples/WixBalBAFunctionsTuple.cs b/src/wixext/Tuples/WixBalBAFunctionsTuple.cs index f753f239..19c7602d 100644 --- a/src/wixext/Tuples/WixBalBAFunctionsTuple.cs +++ b/src/wixext/Tuples/WixBalBAFunctionsTuple.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 WixBalBAFunctions = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixBalBAFunctions = new IntermediateSymbolDefinition( |
11 | BalTupleDefinitionType.WixBalBAFunctions.ToString(), | 11 | BalSymbolDefinitionType.WixBalBAFunctions.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixBalBAFunctionsTupleFields.PayloadId), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixBalBAFunctionsSymbolFields.PayloadId), IntermediateFieldType.String), |
15 | }, | 15 | }, |
16 | typeof(WixBalBAFunctionsTuple)); | 16 | typeof(WixBalBAFunctionsSymbol)); |
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 WixBalBAFunctionsTupleFields | 24 | public enum WixBalBAFunctionsSymbolFields |
25 | { | 25 | { |
26 | PayloadId, | 26 | PayloadId, |
27 | } | 27 | } |
28 | 28 | ||
29 | public class WixBalBAFunctionsTuple : IntermediateTuple | 29 | public class WixBalBAFunctionsSymbol : IntermediateSymbol |
30 | { | 30 | { |
31 | public WixBalBAFunctionsTuple() : base(BalTupleDefinitions.WixBalBAFunctions, null, null) | 31 | public WixBalBAFunctionsSymbol() : base(BalSymbolDefinitions.WixBalBAFunctions, null, null) |
32 | { | 32 | { |
33 | } | 33 | } |
34 | 34 | ||
35 | public WixBalBAFunctionsTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixBalBAFunctions, sourceLineNumber, id) | 35 | public WixBalBAFunctionsSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixBalBAFunctions, sourceLineNumber, id) |
36 | { | 36 | { |
37 | } | 37 | } |
38 | 38 | ||
39 | public IntermediateField this[WixBalBAFunctionsTupleFields index] => this.Fields[(int)index]; | 39 | public IntermediateField this[WixBalBAFunctionsSymbolFields index] => this.Fields[(int)index]; |
40 | 40 | ||
41 | public string PayloadId | 41 | public string PayloadId |
42 | { | 42 | { |
43 | get => this.Fields[(int)WixBalBAFunctionsTupleFields.PayloadId].AsString(); | 43 | get => this.Fields[(int)WixBalBAFunctionsSymbolFields.PayloadId].AsString(); |
44 | set => this.Set((int)WixBalBAFunctionsTupleFields.PayloadId, value); | 44 | set => this.Set((int)WixBalBAFunctionsSymbolFields.PayloadId, value); |
45 | } | 45 | } |
46 | } | 46 | } |
47 | } \ No newline at end of file | 47 | } \ No newline at end of file |
diff --git a/src/wixext/Tuples/WixBalConditionTuple.cs b/src/wixext/Tuples/WixBalConditionTuple.cs index 4c0ddd1d..c2527fbc 100644 --- a/src/wixext/Tuples/WixBalConditionTuple.cs +++ b/src/wixext/Tuples/WixBalConditionTuple.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 WixBalCondition = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixBalCondition = new IntermediateSymbolDefinition( |
11 | BalTupleDefinitionType.WixBalCondition.ToString(), | 11 | BalSymbolDefinitionType.WixBalCondition.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixBalConditionTupleFields.Condition), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixBalConditionSymbolFields.Condition), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(WixBalConditionTupleFields.Message), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixBalConditionSymbolFields.Message), IntermediateFieldType.String), |
16 | }, | 16 | }, |
17 | typeof(WixBalConditionTuple)); | 17 | typeof(WixBalConditionSymbol)); |
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 WixBalConditionTupleFields | 25 | public enum WixBalConditionSymbolFields |
26 | { | 26 | { |
27 | Condition, | 27 | Condition, |
28 | Message, | 28 | Message, |
29 | } | 29 | } |
30 | 30 | ||
31 | public class WixBalConditionTuple : IntermediateTuple | 31 | public class WixBalConditionSymbol : IntermediateSymbol |
32 | { | 32 | { |
33 | public WixBalConditionTuple() : base(BalTupleDefinitions.WixBalCondition, null, null) | 33 | public WixBalConditionSymbol() : base(BalSymbolDefinitions.WixBalCondition, null, null) |
34 | { | 34 | { |
35 | } | 35 | } |
36 | 36 | ||
37 | public WixBalConditionTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixBalCondition, sourceLineNumber, id) | 37 | public WixBalConditionSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixBalCondition, sourceLineNumber, id) |
38 | { | 38 | { |
39 | } | 39 | } |
40 | 40 | ||
41 | public IntermediateField this[WixBalConditionTupleFields index] => this.Fields[(int)index]; | 41 | public IntermediateField this[WixBalConditionSymbolFields index] => this.Fields[(int)index]; |
42 | 42 | ||
43 | public string Condition | 43 | public string Condition |
44 | { | 44 | { |
45 | get => this.Fields[(int)WixBalConditionTupleFields.Condition].AsString(); | 45 | get => this.Fields[(int)WixBalConditionSymbolFields.Condition].AsString(); |
46 | set => this.Set((int)WixBalConditionTupleFields.Condition, value); | 46 | set => this.Set((int)WixBalConditionSymbolFields.Condition, value); |
47 | } | 47 | } |
48 | 48 | ||
49 | public string Message | 49 | public string Message |
50 | { | 50 | { |
51 | get => this.Fields[(int)WixBalConditionTupleFields.Message].AsString(); | 51 | get => this.Fields[(int)WixBalConditionSymbolFields.Message].AsString(); |
52 | set => this.Set((int)WixBalConditionTupleFields.Message, value); | 52 | set => this.Set((int)WixBalConditionSymbolFields.Message, value); |
53 | } | 53 | } |
54 | } | 54 | } |
55 | } \ No newline at end of file | 55 | } \ No newline at end of file |
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 | } |
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 |
diff --git a/src/wixext/Tuples/WixMbaPrereqInformationTuple.cs b/src/wixext/Tuples/WixMbaPrereqInformationTuple.cs index bcbe9f84..e4d78da0 100644 --- a/src/wixext/Tuples/WixMbaPrereqInformationTuple.cs +++ b/src/wixext/Tuples/WixMbaPrereqInformationTuple.cs | |||
@@ -3,61 +3,61 @@ | |||
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 WixMbaPrereqInformation = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixMbaPrereqInformation = new IntermediateSymbolDefinition( |
11 | BalTupleDefinitionType.WixMbaPrereqInformation.ToString(), | 11 | BalSymbolDefinitionType.WixMbaPrereqInformation.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationTupleFields.PackageId), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationSymbolFields.PackageId), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationTupleFields.LicenseFile), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationSymbolFields.LicenseFile), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationTupleFields.LicenseUrl), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationSymbolFields.LicenseUrl), IntermediateFieldType.String), |
17 | }, | 17 | }, |
18 | typeof(WixMbaPrereqInformationTuple)); | 18 | typeof(WixMbaPrereqInformationSymbol)); |
19 | } | 19 | } |
20 | } | 20 | } |
21 | 21 | ||
22 | namespace WixToolset.Bal.Tuples | 22 | namespace WixToolset.Bal.Symbols |
23 | { | 23 | { |
24 | using WixToolset.Data; | 24 | using WixToolset.Data; |
25 | 25 | ||
26 | public enum WixMbaPrereqInformationTupleFields | 26 | public enum WixMbaPrereqInformationSymbolFields |
27 | { | 27 | { |
28 | PackageId, | 28 | PackageId, |
29 | LicenseFile, | 29 | LicenseFile, |
30 | LicenseUrl, | 30 | LicenseUrl, |
31 | } | 31 | } |
32 | 32 | ||
33 | public class WixMbaPrereqInformationTuple : IntermediateTuple | 33 | public class WixMbaPrereqInformationSymbol : IntermediateSymbol |
34 | { | 34 | { |
35 | public WixMbaPrereqInformationTuple() : base(BalTupleDefinitions.WixMbaPrereqInformation, null, null) | 35 | public WixMbaPrereqInformationSymbol() : base(BalSymbolDefinitions.WixMbaPrereqInformation, null, null) |
36 | { | 36 | { |
37 | } | 37 | } |
38 | 38 | ||
39 | public WixMbaPrereqInformationTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixMbaPrereqInformation, sourceLineNumber, id) | 39 | public WixMbaPrereqInformationSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixMbaPrereqInformation, sourceLineNumber, id) |
40 | { | 40 | { |
41 | } | 41 | } |
42 | 42 | ||
43 | public IntermediateField this[WixMbaPrereqInformationTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[WixMbaPrereqInformationSymbolFields index] => this.Fields[(int)index]; |
44 | 44 | ||
45 | public string PackageId | 45 | public string PackageId |
46 | { | 46 | { |
47 | get => this.Fields[(int)WixMbaPrereqInformationTupleFields.PackageId].AsString(); | 47 | get => this.Fields[(int)WixMbaPrereqInformationSymbolFields.PackageId].AsString(); |
48 | set => this.Set((int)WixMbaPrereqInformationTupleFields.PackageId, value); | 48 | set => this.Set((int)WixMbaPrereqInformationSymbolFields.PackageId, value); |
49 | } | 49 | } |
50 | 50 | ||
51 | public string LicenseFile | 51 | public string LicenseFile |
52 | { | 52 | { |
53 | get => this.Fields[(int)WixMbaPrereqInformationTupleFields.LicenseFile].AsString(); | 53 | get => this.Fields[(int)WixMbaPrereqInformationSymbolFields.LicenseFile].AsString(); |
54 | set => this.Set((int)WixMbaPrereqInformationTupleFields.LicenseFile, value); | 54 | set => this.Set((int)WixMbaPrereqInformationSymbolFields.LicenseFile, value); |
55 | } | 55 | } |
56 | 56 | ||
57 | public string LicenseUrl | 57 | public string LicenseUrl |
58 | { | 58 | { |
59 | get => this.Fields[(int)WixMbaPrereqInformationTupleFields.LicenseUrl].AsString(); | 59 | get => this.Fields[(int)WixMbaPrereqInformationSymbolFields.LicenseUrl].AsString(); |
60 | set => this.Set((int)WixMbaPrereqInformationTupleFields.LicenseUrl, value); | 60 | set => this.Set((int)WixMbaPrereqInformationSymbolFields.LicenseUrl, value); |
61 | } | 61 | } |
62 | } | 62 | } |
63 | } \ No newline at end of file | 63 | } \ No newline at end of file |
diff --git a/src/wixext/Tuples/WixStdbaOptionsTuple.cs b/src/wixext/Tuples/WixStdbaOptionsTuple.cs index d930eb47..cb2694da 100644 --- a/src/wixext/Tuples/WixStdbaOptionsTuple.cs +++ b/src/wixext/Tuples/WixStdbaOptionsTuple.cs | |||
@@ -3,29 +3,29 @@ | |||
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 WixStdbaOptions = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixStdbaOptions = new IntermediateSymbolDefinition( |
11 | BalTupleDefinitionType.WixStdbaOptions.ToString(), | 11 | BalSymbolDefinitionType.WixStdbaOptions.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsTupleFields.SuppressOptionsUI), IntermediateFieldType.Number), | 14 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsSymbolFields.SuppressOptionsUI), IntermediateFieldType.Number), |
15 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsTupleFields.SuppressDowngradeFailure), IntermediateFieldType.Number), | 15 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsSymbolFields.SuppressDowngradeFailure), IntermediateFieldType.Number), |
16 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsTupleFields.SuppressRepair), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsSymbolFields.SuppressRepair), IntermediateFieldType.Number), |
17 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsTupleFields.ShowVersion), IntermediateFieldType.Number), | 17 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsSymbolFields.ShowVersion), IntermediateFieldType.Number), |
18 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsTupleFields.SupportCacheOnly), IntermediateFieldType.Number), | 18 | new IntermediateFieldDefinition(nameof(WixStdbaOptionsSymbolFields.SupportCacheOnly), IntermediateFieldType.Number), |
19 | }, | 19 | }, |
20 | typeof(WixStdbaOptionsTuple)); | 20 | typeof(WixStdbaOptionsSymbol)); |
21 | } | 21 | } |
22 | } | 22 | } |
23 | 23 | ||
24 | namespace WixToolset.Bal.Tuples | 24 | namespace WixToolset.Bal.Symbols |
25 | { | 25 | { |
26 | using WixToolset.Data; | 26 | using WixToolset.Data; |
27 | 27 | ||
28 | public enum WixStdbaOptionsTupleFields | 28 | public enum WixStdbaOptionsSymbolFields |
29 | { | 29 | { |
30 | SuppressOptionsUI, | 30 | SuppressOptionsUI, |
31 | SuppressDowngradeFailure, | 31 | SuppressDowngradeFailure, |
@@ -34,46 +34,46 @@ namespace WixToolset.Bal.Tuples | |||
34 | SupportCacheOnly, | 34 | SupportCacheOnly, |
35 | } | 35 | } |
36 | 36 | ||
37 | public class WixStdbaOptionsTuple : IntermediateTuple | 37 | public class WixStdbaOptionsSymbol : IntermediateSymbol |
38 | { | 38 | { |
39 | public WixStdbaOptionsTuple() : base(BalTupleDefinitions.WixStdbaOptions, null, null) | 39 | public WixStdbaOptionsSymbol() : base(BalSymbolDefinitions.WixStdbaOptions, null, null) |
40 | { | 40 | { |
41 | } | 41 | } |
42 | 42 | ||
43 | public WixStdbaOptionsTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixStdbaOptions, sourceLineNumber, id) | 43 | public WixStdbaOptionsSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixStdbaOptions, sourceLineNumber, id) |
44 | { | 44 | { |
45 | } | 45 | } |
46 | 46 | ||
47 | public IntermediateField this[WixStdbaOptionsTupleFields index] => this.Fields[(int)index]; | 47 | public IntermediateField this[WixStdbaOptionsSymbolFields index] => this.Fields[(int)index]; |
48 | 48 | ||
49 | public int SuppressOptionsUI | 49 | public int SuppressOptionsUI |
50 | { | 50 | { |
51 | get => this.Fields[(int)WixStdbaOptionsTupleFields.SuppressOptionsUI].AsNumber(); | 51 | get => this.Fields[(int)WixStdbaOptionsSymbolFields.SuppressOptionsUI].AsNumber(); |
52 | set => this.Set((int)WixStdbaOptionsTupleFields.SuppressOptionsUI, value); | 52 | set => this.Set((int)WixStdbaOptionsSymbolFields.SuppressOptionsUI, value); |
53 | } | 53 | } |
54 | 54 | ||
55 | public int SuppressDowngradeFailure | 55 | public int SuppressDowngradeFailure |
56 | { | 56 | { |
57 | get => this.Fields[(int)WixStdbaOptionsTupleFields.SuppressDowngradeFailure].AsNumber(); | 57 | get => this.Fields[(int)WixStdbaOptionsSymbolFields.SuppressDowngradeFailure].AsNumber(); |
58 | set => this.Set((int)WixStdbaOptionsTupleFields.SuppressDowngradeFailure, value); | 58 | set => this.Set((int)WixStdbaOptionsSymbolFields.SuppressDowngradeFailure, value); |
59 | } | 59 | } |
60 | 60 | ||
61 | public int SuppressRepair | 61 | public int SuppressRepair |
62 | { | 62 | { |
63 | get => this.Fields[(int)WixStdbaOptionsTupleFields.SuppressRepair].AsNumber(); | 63 | get => this.Fields[(int)WixStdbaOptionsSymbolFields.SuppressRepair].AsNumber(); |
64 | set => this.Set((int)WixStdbaOptionsTupleFields.SuppressRepair, value); | 64 | set => this.Set((int)WixStdbaOptionsSymbolFields.SuppressRepair, value); |
65 | } | 65 | } |
66 | 66 | ||
67 | public int ShowVersion | 67 | public int ShowVersion |
68 | { | 68 | { |
69 | get => this.Fields[(int)WixStdbaOptionsTupleFields.ShowVersion].AsNumber(); | 69 | get => this.Fields[(int)WixStdbaOptionsSymbolFields.ShowVersion].AsNumber(); |
70 | set => this.Set((int)WixStdbaOptionsTupleFields.ShowVersion, value); | 70 | set => this.Set((int)WixStdbaOptionsSymbolFields.ShowVersion, value); |
71 | } | 71 | } |
72 | 72 | ||
73 | public int SupportCacheOnly | 73 | public int SupportCacheOnly |
74 | { | 74 | { |
75 | get => this.Fields[(int)WixStdbaOptionsTupleFields.SupportCacheOnly].AsNumber(); | 75 | get => this.Fields[(int)WixStdbaOptionsSymbolFields.SupportCacheOnly].AsNumber(); |
76 | set => this.Set((int)WixStdbaOptionsTupleFields.SupportCacheOnly, value); | 76 | set => this.Set((int)WixStdbaOptionsSymbolFields.SupportCacheOnly, value); |
77 | } | 77 | } |
78 | } | 78 | } |
79 | } \ No newline at end of file | 79 | } \ No newline at end of file |
diff --git a/src/wixext/Tuples/WixStdbaOverridableVariableTuple.cs b/src/wixext/Tuples/WixStdbaOverridableVariableTuple.cs index 3ba982ea..1d84d1aa 100644 --- a/src/wixext/Tuples/WixStdbaOverridableVariableTuple.cs +++ b/src/wixext/Tuples/WixStdbaOverridableVariableTuple.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 WixStdbaOverridableVariable = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixStdbaOverridableVariable = new IntermediateSymbolDefinition( |
11 | BalTupleDefinitionType.WixStdbaOverridableVariable.ToString(), | 11 | BalSymbolDefinitionType.WixStdbaOverridableVariable.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixStdbaOverridableVariableTupleFields.Name), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixStdbaOverridableVariableSymbolFields.Name), IntermediateFieldType.String), |
15 | }, | 15 | }, |
16 | typeof(WixStdbaOverridableVariableTuple)); | 16 | typeof(WixStdbaOverridableVariableSymbol)); |
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 WixStdbaOverridableVariableTupleFields | 24 | public enum WixStdbaOverridableVariableSymbolFields |
25 | { | 25 | { |
26 | Name, | 26 | Name, |
27 | } | 27 | } |
28 | 28 | ||
29 | public class WixStdbaOverridableVariableTuple : IntermediateTuple | 29 | public class WixStdbaOverridableVariableSymbol : IntermediateSymbol |
30 | { | 30 | { |
31 | public WixStdbaOverridableVariableTuple() : base(BalTupleDefinitions.WixStdbaOverridableVariable, null, null) | 31 | public WixStdbaOverridableVariableSymbol() : base(BalSymbolDefinitions.WixStdbaOverridableVariable, null, null) |
32 | { | 32 | { |
33 | } | 33 | } |
34 | 34 | ||
35 | public WixStdbaOverridableVariableTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixStdbaOverridableVariable, sourceLineNumber, id) | 35 | public WixStdbaOverridableVariableSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixStdbaOverridableVariable, sourceLineNumber, id) |
36 | { | 36 | { |
37 | } | 37 | } |
38 | 38 | ||
39 | public IntermediateField this[WixStdbaOverridableVariableTupleFields index] => this.Fields[(int)index]; | 39 | public IntermediateField this[WixStdbaOverridableVariableSymbolFields index] => this.Fields[(int)index]; |
40 | 40 | ||
41 | public string Name | 41 | public string Name |
42 | { | 42 | { |
43 | get => this.Fields[(int)WixStdbaOverridableVariableTupleFields.Name].AsString(); | 43 | get => this.Fields[(int)WixStdbaOverridableVariableSymbolFields.Name].AsString(); |
44 | set => this.Set((int)WixStdbaOverridableVariableTupleFields.Name, value); | 44 | set => this.Set((int)WixStdbaOverridableVariableSymbolFields.Name, value); |
45 | } | 45 | } |
46 | } | 46 | } |
47 | } \ No newline at end of file | 47 | } \ No newline at end of file |