aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/WixMbaPrereqInformationTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wixext/Tuples/WixMbaPrereqInformationTuple.cs40
1 files changed, 20 insertions, 20 deletions
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 @@
3namespace WixToolset.Bal 3namespace 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
22namespace WixToolset.Bal.Tuples 22namespace 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