main
cs 52 lines 2.01 KB
Raw
1 // 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.
2
3 namespace WixToolset.Data
4 {
5 using WixToolset.Data.Symbols;
6
7 public static partial class SymbolDefinitions
8 {
9 public static readonly IntermediateSymbolDefinition WixBundleCustomDataAttribute = new IntermediateSymbolDefinition(
10 SymbolDefinitionType.WixBundleCustomDataAttribute,
11 new[]
12 {
13 new IntermediateFieldDefinition(nameof(WixBundleCustomDataAttributeSymbolFields.CustomDataRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixBundleCustomDataAttributeSymbolFields.Name), IntermediateFieldType.String),
15 },
16 typeof(WixBundleCustomDataAttributeSymbol));
17 }
18 }
19
20 namespace WixToolset.Data.Symbols
21 {
22 public enum WixBundleCustomDataAttributeSymbolFields
23 {
24 CustomDataRef,
25 Name,
26 }
27
28 public class WixBundleCustomDataAttributeSymbol : IntermediateSymbol
29 {
30 public WixBundleCustomDataAttributeSymbol() : base(SymbolDefinitions.WixBundleCustomDataAttribute, null, null)
31 {
32 }
33
34 public WixBundleCustomDataAttributeSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.WixBundleCustomDataAttribute, sourceLineNumber, id)
35 {
36 }
37
38 public IntermediateField this[WixBundleCustomDataAttributeSymbolFields index] => this.Fields[(int)index];
39
40 public string CustomDataRef
41 {
42 get => (string)this.Fields[(int)WixBundleCustomDataAttributeSymbolFields.CustomDataRef];
43 set => this.Set((int)WixBundleCustomDataAttributeSymbolFields.CustomDataRef, value);
44 }
45
46 public string Name
47 {
48 get => (string)this.Fields[(int)WixBundleCustomDataAttributeSymbolFields.Name];
49 set => this.Set((int)WixBundleCustomDataAttributeSymbolFields.Name, value);
50 }
51 }
52 }