diff options
Diffstat (limited to 'src/wixext/Tuples/ComPlusApplicationTuple.cs')
-rw-r--r-- | src/wixext/Tuples/ComPlusApplicationTuple.cs | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/src/wixext/Tuples/ComPlusApplicationTuple.cs b/src/wixext/Tuples/ComPlusApplicationTuple.cs index 7420b538..ce541e43 100644 --- a/src/wixext/Tuples/ComPlusApplicationTuple.cs +++ b/src/wixext/Tuples/ComPlusApplicationTuple.cs | |||
@@ -3,28 +3,28 @@ | |||
3 | namespace WixToolset.ComPlus | 3 | namespace WixToolset.ComPlus |
4 | { | 4 | { |
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.ComPlus.Tuples; | 6 | using WixToolset.ComPlus.Symbols; |
7 | 7 | ||
8 | public static partial class ComPlusTupleDefinitions | 8 | public static partial class ComPlusSymbolDefinitions |
9 | { | 9 | { |
10 | public static readonly IntermediateTupleDefinition ComPlusApplication = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition ComPlusApplication = new IntermediateSymbolDefinition( |
11 | ComPlusTupleDefinitionType.ComPlusApplication.ToString(), | 11 | ComPlusSymbolDefinitionType.ComPlusApplication.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(ComPlusApplicationTupleFields.PartitionRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusApplicationSymbolFields.PartitionRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComPlusApplicationTupleFields.ComponentRef), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusApplicationSymbolFields.ComponentRef), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ComPlusApplicationTupleFields.ApplicationId), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ComPlusApplicationSymbolFields.ApplicationId), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(ComPlusApplicationTupleFields.Name), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(ComPlusApplicationSymbolFields.Name), IntermediateFieldType.String), |
18 | }, | 18 | }, |
19 | typeof(ComPlusApplicationTuple)); | 19 | typeof(ComPlusApplicationSymbol)); |
20 | } | 20 | } |
21 | } | 21 | } |
22 | 22 | ||
23 | namespace WixToolset.ComPlus.Tuples | 23 | namespace WixToolset.ComPlus.Symbols |
24 | { | 24 | { |
25 | using WixToolset.Data; | 25 | using WixToolset.Data; |
26 | 26 | ||
27 | public enum ComPlusApplicationTupleFields | 27 | public enum ComPlusApplicationSymbolFields |
28 | { | 28 | { |
29 | PartitionRef, | 29 | PartitionRef, |
30 | ComponentRef, | 30 | ComponentRef, |
@@ -32,40 +32,40 @@ namespace WixToolset.ComPlus.Tuples | |||
32 | Name, | 32 | Name, |
33 | } | 33 | } |
34 | 34 | ||
35 | public class ComPlusApplicationTuple : IntermediateTuple | 35 | public class ComPlusApplicationSymbol : IntermediateSymbol |
36 | { | 36 | { |
37 | public ComPlusApplicationTuple() : base(ComPlusTupleDefinitions.ComPlusApplication, null, null) | 37 | public ComPlusApplicationSymbol() : base(ComPlusSymbolDefinitions.ComPlusApplication, null, null) |
38 | { | 38 | { |
39 | } | 39 | } |
40 | 40 | ||
41 | public ComPlusApplicationTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusTupleDefinitions.ComPlusApplication, sourceLineNumber, id) | 41 | public ComPlusApplicationSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusSymbolDefinitions.ComPlusApplication, sourceLineNumber, id) |
42 | { | 42 | { |
43 | } | 43 | } |
44 | 44 | ||
45 | public IntermediateField this[ComPlusApplicationTupleFields index] => this.Fields[(int)index]; | 45 | public IntermediateField this[ComPlusApplicationSymbolFields index] => this.Fields[(int)index]; |
46 | 46 | ||
47 | public string PartitionRef | 47 | public string PartitionRef |
48 | { | 48 | { |
49 | get => this.Fields[(int)ComPlusApplicationTupleFields.PartitionRef].AsString(); | 49 | get => this.Fields[(int)ComPlusApplicationSymbolFields.PartitionRef].AsString(); |
50 | set => this.Set((int)ComPlusApplicationTupleFields.PartitionRef, value); | 50 | set => this.Set((int)ComPlusApplicationSymbolFields.PartitionRef, value); |
51 | } | 51 | } |
52 | 52 | ||
53 | public string ComponentRef | 53 | public string ComponentRef |
54 | { | 54 | { |
55 | get => this.Fields[(int)ComPlusApplicationTupleFields.ComponentRef].AsString(); | 55 | get => this.Fields[(int)ComPlusApplicationSymbolFields.ComponentRef].AsString(); |
56 | set => this.Set((int)ComPlusApplicationTupleFields.ComponentRef, value); | 56 | set => this.Set((int)ComPlusApplicationSymbolFields.ComponentRef, value); |
57 | } | 57 | } |
58 | 58 | ||
59 | public string ApplicationId | 59 | public string ApplicationId |
60 | { | 60 | { |
61 | get => this.Fields[(int)ComPlusApplicationTupleFields.ApplicationId].AsString(); | 61 | get => this.Fields[(int)ComPlusApplicationSymbolFields.ApplicationId].AsString(); |
62 | set => this.Set((int)ComPlusApplicationTupleFields.ApplicationId, value); | 62 | set => this.Set((int)ComPlusApplicationSymbolFields.ApplicationId, value); |
63 | } | 63 | } |
64 | 64 | ||
65 | public string Name | 65 | public string Name |
66 | { | 66 | { |
67 | get => this.Fields[(int)ComPlusApplicationTupleFields.Name].AsString(); | 67 | get => this.Fields[(int)ComPlusApplicationSymbolFields.Name].AsString(); |
68 | set => this.Set((int)ComPlusApplicationTupleFields.Name, value); | 68 | set => this.Set((int)ComPlusApplicationSymbolFields.Name, value); |
69 | } | 69 | } |
70 | } | 70 | } |
71 | } \ No newline at end of file | 71 | } \ No newline at end of file |