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