1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// 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.
namespace WixToolset.Bal
{
using WixToolset.Data;
using WixToolset.Bal.Symbols;
public static partial class BalSymbolDefinitions
{
public static readonly IntermediateSymbolDefinition WixMbaPrereqInformation = new IntermediateSymbolDefinition(
BalSymbolDefinitionType.WixMbaPrereqInformation.ToString(),
new[]
{
new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationSymbolFields.PackageId), IntermediateFieldType.String),
new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationSymbolFields.LicenseFile), IntermediateFieldType.String),
new IntermediateFieldDefinition(nameof(WixMbaPrereqInformationSymbolFields.LicenseUrl), IntermediateFieldType.String),
},
typeof(WixMbaPrereqInformationSymbol));
}
}
namespace WixToolset.Bal.Symbols
{
using WixToolset.Data;
public enum WixMbaPrereqInformationSymbolFields
{
PackageId,
LicenseFile,
LicenseUrl,
}
public class WixMbaPrereqInformationSymbol : IntermediateSymbol
{
public WixMbaPrereqInformationSymbol() : base(BalSymbolDefinitions.WixMbaPrereqInformation, null, null)
{
}
public WixMbaPrereqInformationSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixMbaPrereqInformation, sourceLineNumber, id)
{
}
public IntermediateField this[WixMbaPrereqInformationSymbolFields index] => this.Fields[(int)index];
public string PackageId
{
get => this.Fields[(int)WixMbaPrereqInformationSymbolFields.PackageId].AsString();
set => this.Set((int)WixMbaPrereqInformationSymbolFields.PackageId, value);
}
public string LicenseFile
{
get => this.Fields[(int)WixMbaPrereqInformationSymbolFields.LicenseFile].AsString();
set => this.Set((int)WixMbaPrereqInformationSymbolFields.LicenseFile, value);
}
public string LicenseUrl
{
get => this.Fields[(int)WixMbaPrereqInformationSymbolFields.LicenseUrl].AsString();
set => this.Set((int)WixMbaPrereqInformationSymbolFields.LicenseUrl, value);
}
}
}
|