diff options
Diffstat (limited to 'src/wixext/Tuples/ComPlusAssemblyTuple.cs')
| -rw-r--r-- | src/wixext/Tuples/ComPlusAssemblyTuple.cs | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/src/wixext/Tuples/ComPlusAssemblyTuple.cs b/src/wixext/Tuples/ComPlusAssemblyTuple.cs index c4593cad..1329df30 100644 --- a/src/wixext/Tuples/ComPlusAssemblyTuple.cs +++ b/src/wixext/Tuples/ComPlusAssemblyTuple.cs | |||
| @@ -3,31 +3,31 @@ | |||
| 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 ComPlusAssembly = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition ComPlusAssembly = new IntermediateSymbolDefinition( |
| 11 | ComPlusTupleDefinitionType.ComPlusAssembly.ToString(), | 11 | ComPlusSymbolDefinitionType.ComPlusAssembly.ToString(), |
| 12 | new[] | 12 | new[] |
| 13 | { | 13 | { |
| 14 | new IntermediateFieldDefinition(nameof(ComPlusAssemblyTupleFields.ApplicationRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusAssemblySymbolFields.ApplicationRef), IntermediateFieldType.String), |
| 15 | new IntermediateFieldDefinition(nameof(ComPlusAssemblyTupleFields.ComponentRef), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusAssemblySymbolFields.ComponentRef), IntermediateFieldType.String), |
| 16 | new IntermediateFieldDefinition(nameof(ComPlusAssemblyTupleFields.AssemblyName), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ComPlusAssemblySymbolFields.AssemblyName), IntermediateFieldType.String), |
| 17 | new IntermediateFieldDefinition(nameof(ComPlusAssemblyTupleFields.DllPath), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(ComPlusAssemblySymbolFields.DllPath), IntermediateFieldType.String), |
| 18 | new IntermediateFieldDefinition(nameof(ComPlusAssemblyTupleFields.TlbPath), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(ComPlusAssemblySymbolFields.TlbPath), IntermediateFieldType.String), |
| 19 | new IntermediateFieldDefinition(nameof(ComPlusAssemblyTupleFields.PSDllPath), IntermediateFieldType.String), | 19 | new IntermediateFieldDefinition(nameof(ComPlusAssemblySymbolFields.PSDllPath), IntermediateFieldType.String), |
| 20 | new IntermediateFieldDefinition(nameof(ComPlusAssemblyTupleFields.Attributes), IntermediateFieldType.Number), | 20 | new IntermediateFieldDefinition(nameof(ComPlusAssemblySymbolFields.Attributes), IntermediateFieldType.Number), |
| 21 | }, | 21 | }, |
| 22 | typeof(ComPlusAssemblyTuple)); | 22 | typeof(ComPlusAssemblySymbol)); |
| 23 | } | 23 | } |
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | namespace WixToolset.ComPlus.Tuples | 26 | namespace WixToolset.ComPlus.Symbols |
| 27 | { | 27 | { |
| 28 | using WixToolset.Data; | 28 | using WixToolset.Data; |
| 29 | 29 | ||
| 30 | public enum ComPlusAssemblyTupleFields | 30 | public enum ComPlusAssemblySymbolFields |
| 31 | { | 31 | { |
| 32 | ApplicationRef, | 32 | ApplicationRef, |
| 33 | ComponentRef, | 33 | ComponentRef, |
| @@ -38,58 +38,58 @@ namespace WixToolset.ComPlus.Tuples | |||
| 38 | Attributes, | 38 | Attributes, |
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | public class ComPlusAssemblyTuple : IntermediateTuple | 41 | public class ComPlusAssemblySymbol : IntermediateSymbol |
| 42 | { | 42 | { |
| 43 | public ComPlusAssemblyTuple() : base(ComPlusTupleDefinitions.ComPlusAssembly, null, null) | 43 | public ComPlusAssemblySymbol() : base(ComPlusSymbolDefinitions.ComPlusAssembly, null, null) |
| 44 | { | 44 | { |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | public ComPlusAssemblyTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusTupleDefinitions.ComPlusAssembly, sourceLineNumber, id) | 47 | public ComPlusAssemblySymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusSymbolDefinitions.ComPlusAssembly, sourceLineNumber, id) |
| 48 | { | 48 | { |
| 49 | } | 49 | } |
| 50 | 50 | ||
| 51 | public IntermediateField this[ComPlusAssemblyTupleFields index] => this.Fields[(int)index]; | 51 | public IntermediateField this[ComPlusAssemblySymbolFields index] => this.Fields[(int)index]; |
| 52 | 52 | ||
| 53 | public string ApplicationRef | 53 | public string ApplicationRef |
| 54 | { | 54 | { |
| 55 | get => this.Fields[(int)ComPlusAssemblyTupleFields.ApplicationRef].AsString(); | 55 | get => this.Fields[(int)ComPlusAssemblySymbolFields.ApplicationRef].AsString(); |
| 56 | set => this.Set((int)ComPlusAssemblyTupleFields.ApplicationRef, value); | 56 | set => this.Set((int)ComPlusAssemblySymbolFields.ApplicationRef, value); |
| 57 | } | 57 | } |
| 58 | 58 | ||
| 59 | public string ComponentRef | 59 | public string ComponentRef |
| 60 | { | 60 | { |
| 61 | get => this.Fields[(int)ComPlusAssemblyTupleFields.ComponentRef].AsString(); | 61 | get => this.Fields[(int)ComPlusAssemblySymbolFields.ComponentRef].AsString(); |
| 62 | set => this.Set((int)ComPlusAssemblyTupleFields.ComponentRef, value); | 62 | set => this.Set((int)ComPlusAssemblySymbolFields.ComponentRef, value); |
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | public string AssemblyName | 65 | public string AssemblyName |
| 66 | { | 66 | { |
| 67 | get => this.Fields[(int)ComPlusAssemblyTupleFields.AssemblyName].AsString(); | 67 | get => this.Fields[(int)ComPlusAssemblySymbolFields.AssemblyName].AsString(); |
| 68 | set => this.Set((int)ComPlusAssemblyTupleFields.AssemblyName, value); | 68 | set => this.Set((int)ComPlusAssemblySymbolFields.AssemblyName, value); |
| 69 | } | 69 | } |
| 70 | 70 | ||
| 71 | public string DllPath | 71 | public string DllPath |
| 72 | { | 72 | { |
| 73 | get => this.Fields[(int)ComPlusAssemblyTupleFields.DllPath].AsString(); | 73 | get => this.Fields[(int)ComPlusAssemblySymbolFields.DllPath].AsString(); |
| 74 | set => this.Set((int)ComPlusAssemblyTupleFields.DllPath, value); | 74 | set => this.Set((int)ComPlusAssemblySymbolFields.DllPath, value); |
| 75 | } | 75 | } |
| 76 | 76 | ||
| 77 | public string TlbPath | 77 | public string TlbPath |
| 78 | { | 78 | { |
| 79 | get => this.Fields[(int)ComPlusAssemblyTupleFields.TlbPath].AsString(); | 79 | get => this.Fields[(int)ComPlusAssemblySymbolFields.TlbPath].AsString(); |
| 80 | set => this.Set((int)ComPlusAssemblyTupleFields.TlbPath, value); | 80 | set => this.Set((int)ComPlusAssemblySymbolFields.TlbPath, value); |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | public string PSDllPath | 83 | public string PSDllPath |
| 84 | { | 84 | { |
| 85 | get => this.Fields[(int)ComPlusAssemblyTupleFields.PSDllPath].AsString(); | 85 | get => this.Fields[(int)ComPlusAssemblySymbolFields.PSDllPath].AsString(); |
| 86 | set => this.Set((int)ComPlusAssemblyTupleFields.PSDllPath, value); | 86 | set => this.Set((int)ComPlusAssemblySymbolFields.PSDllPath, value); |
| 87 | } | 87 | } |
| 88 | 88 | ||
| 89 | public int Attributes | 89 | public int Attributes |
| 90 | { | 90 | { |
| 91 | get => this.Fields[(int)ComPlusAssemblyTupleFields.Attributes].AsNumber(); | 91 | get => this.Fields[(int)ComPlusAssemblySymbolFields.Attributes].AsNumber(); |
| 92 | set => this.Set((int)ComPlusAssemblyTupleFields.Attributes, value); | 92 | set => this.Set((int)ComPlusAssemblySymbolFields.Attributes, value); |
| 93 | } | 93 | } |
| 94 | } | 94 | } |
| 95 | } \ No newline at end of file | 95 | } \ No newline at end of file |
