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