diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/ComPlusPartitionTuple.cs | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/src/wixext/Tuples/ComPlusPartitionTuple.cs b/src/wixext/Tuples/ComPlusPartitionTuple.cs index 68de9955..0b7417dd 100644 --- a/src/wixext/Tuples/ComPlusPartitionTuple.cs +++ b/src/wixext/Tuples/ComPlusPartitionTuple.cs | |||
@@ -11,9 +11,8 @@ namespace WixToolset.ComPlus | |||
11 | ComPlusTupleDefinitionType.ComPlusPartition.ToString(), | 11 | ComPlusTupleDefinitionType.ComPlusPartition.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(ComPlusPartitionTupleFields.Partition), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusPartitionTupleFields.ComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComPlusPartitionTupleFields.Component_), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusPartitionTupleFields.PartitionId), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ComPlusPartitionTupleFields.CustomId), IntermediateFieldType.String), | ||
17 | new IntermediateFieldDefinition(nameof(ComPlusPartitionTupleFields.Name), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ComPlusPartitionTupleFields.Name), IntermediateFieldType.String), |
18 | }, | 17 | }, |
19 | typeof(ComPlusPartitionTuple)); | 18 | typeof(ComPlusPartitionTuple)); |
@@ -26,9 +25,8 @@ namespace WixToolset.ComPlus.Tuples | |||
26 | 25 | ||
27 | public enum ComPlusPartitionTupleFields | 26 | public enum ComPlusPartitionTupleFields |
28 | { | 27 | { |
29 | Partition, | 28 | ComponentRef, |
30 | Component_, | 29 | PartitionId, |
31 | CustomId, | ||
32 | Name, | 30 | Name, |
33 | } | 31 | } |
34 | 32 | ||
@@ -44,22 +42,16 @@ namespace WixToolset.ComPlus.Tuples | |||
44 | 42 | ||
45 | public IntermediateField this[ComPlusPartitionTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[ComPlusPartitionTupleFields index] => this.Fields[(int)index]; |
46 | 44 | ||
47 | public string Partition | 45 | public string ComponentRef |
48 | { | 46 | { |
49 | get => this.Fields[(int)ComPlusPartitionTupleFields.Partition].AsString(); | 47 | get => this.Fields[(int)ComPlusPartitionTupleFields.ComponentRef].AsString(); |
50 | set => this.Set((int)ComPlusPartitionTupleFields.Partition, value); | 48 | set => this.Set((int)ComPlusPartitionTupleFields.ComponentRef, value); |
51 | } | 49 | } |
52 | 50 | ||
53 | public string Component_ | 51 | public string PartitionId |
54 | { | 52 | { |
55 | get => this.Fields[(int)ComPlusPartitionTupleFields.Component_].AsString(); | 53 | get => this.Fields[(int)ComPlusPartitionTupleFields.PartitionId].AsString(); |
56 | set => this.Set((int)ComPlusPartitionTupleFields.Component_, value); | 54 | set => this.Set((int)ComPlusPartitionTupleFields.PartitionId, value); |
57 | } | ||
58 | |||
59 | public string CustomId | ||
60 | { | ||
61 | get => this.Fields[(int)ComPlusPartitionTupleFields.CustomId].AsString(); | ||
62 | set => this.Set((int)ComPlusPartitionTupleFields.CustomId, value); | ||
63 | } | 55 | } |
64 | 56 | ||
65 | public string Name | 57 | public string Name |