diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/ComPlusInterfaceTuple.cs | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/wixext/Tuples/ComPlusInterfaceTuple.cs b/src/wixext/Tuples/ComPlusInterfaceTuple.cs index 3c4042ef..42d41ded 100644 --- a/src/wixext/Tuples/ComPlusInterfaceTuple.cs +++ b/src/wixext/Tuples/ComPlusInterfaceTuple.cs | |||
@@ -11,8 +11,7 @@ namespace WixToolset.ComPlus | |||
11 | ComPlusTupleDefinitionType.ComPlusInterface.ToString(), | 11 | ComPlusTupleDefinitionType.ComPlusInterface.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceTupleFields.Interface), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceTupleFields.ComPlusComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceTupleFields.ComPlusComponent_), IntermediateFieldType.String), | ||
16 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceTupleFields.IID), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceTupleFields.IID), IntermediateFieldType.String), |
17 | }, | 16 | }, |
18 | typeof(ComPlusInterfaceTuple)); | 17 | typeof(ComPlusInterfaceTuple)); |
@@ -25,8 +24,7 @@ namespace WixToolset.ComPlus.Tuples | |||
25 | 24 | ||
26 | public enum ComPlusInterfaceTupleFields | 25 | public enum ComPlusInterfaceTupleFields |
27 | { | 26 | { |
28 | Interface, | 27 | ComPlusComponentRef, |
29 | ComPlusComponent_, | ||
30 | IID, | 28 | IID, |
31 | } | 29 | } |
32 | 30 | ||
@@ -42,16 +40,10 @@ namespace WixToolset.ComPlus.Tuples | |||
42 | 40 | ||
43 | public IntermediateField this[ComPlusInterfaceTupleFields index] => this.Fields[(int)index]; | 41 | public IntermediateField this[ComPlusInterfaceTupleFields index] => this.Fields[(int)index]; |
44 | 42 | ||
45 | public string Interface | 43 | public string ComPlusComponentRef |
46 | { | 44 | { |
47 | get => this.Fields[(int)ComPlusInterfaceTupleFields.Interface].AsString(); | 45 | get => this.Fields[(int)ComPlusInterfaceTupleFields.ComPlusComponentRef].AsString(); |
48 | set => this.Set((int)ComPlusInterfaceTupleFields.Interface, value); | 46 | set => this.Set((int)ComPlusInterfaceTupleFields.ComPlusComponentRef, value); |
49 | } | ||
50 | |||
51 | public string ComPlusComponent_ | ||
52 | { | ||
53 | get => this.Fields[(int)ComPlusInterfaceTupleFields.ComPlusComponent_].AsString(); | ||
54 | set => this.Set((int)ComPlusInterfaceTupleFields.ComPlusComponent_, value); | ||
55 | } | 47 | } |
56 | 48 | ||
57 | public string IID | 49 | public string IID |