diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/ComPlusRoleForComponentTuple.cs | 38 |
1 files changed, 15 insertions, 23 deletions
diff --git a/src/wixext/Tuples/ComPlusRoleForComponentTuple.cs b/src/wixext/Tuples/ComPlusRoleForComponentTuple.cs index 75d8cfaf..8cf0b8d5 100644 --- a/src/wixext/Tuples/ComPlusRoleForComponentTuple.cs +++ b/src/wixext/Tuples/ComPlusRoleForComponentTuple.cs | |||
@@ -11,10 +11,9 @@ namespace WixToolset.ComPlus | |||
11 | ComPlusTupleDefinitionType.ComPlusRoleForComponent.ToString(), | 11 | ComPlusTupleDefinitionType.ComPlusRoleForComponent.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.RoleForComponent), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.ComPlusComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.ComPlusComponent_), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.ApplicationRoleRef), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.ApplicationRole_), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.ComponentRef), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.Component_), IntermediateFieldType.String), | ||
18 | }, | 17 | }, |
19 | typeof(ComPlusRoleForComponentTuple)); | 18 | typeof(ComPlusRoleForComponentTuple)); |
20 | } | 19 | } |
@@ -26,10 +25,9 @@ namespace WixToolset.ComPlus.Tuples | |||
26 | 25 | ||
27 | public enum ComPlusRoleForComponentTupleFields | 26 | public enum ComPlusRoleForComponentTupleFields |
28 | { | 27 | { |
29 | RoleForComponent, | 28 | ComPlusComponentRef, |
30 | ComPlusComponent_, | 29 | ApplicationRoleRef, |
31 | ApplicationRole_, | 30 | ComponentRef, |
32 | Component_, | ||
33 | } | 31 | } |
34 | 32 | ||
35 | public class ComPlusRoleForComponentTuple : IntermediateTuple | 33 | public class ComPlusRoleForComponentTuple : IntermediateTuple |
@@ -44,28 +42,22 @@ namespace WixToolset.ComPlus.Tuples | |||
44 | 42 | ||
45 | public IntermediateField this[ComPlusRoleForComponentTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[ComPlusRoleForComponentTupleFields index] => this.Fields[(int)index]; |
46 | 44 | ||
47 | public string RoleForComponent | 45 | public string ComPlusComponentRef |
48 | { | 46 | { |
49 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.RoleForComponent].AsString(); | 47 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.ComPlusComponentRef].AsString(); |
50 | set => this.Set((int)ComPlusRoleForComponentTupleFields.RoleForComponent, value); | 48 | set => this.Set((int)ComPlusRoleForComponentTupleFields.ComPlusComponentRef, value); |
51 | } | 49 | } |
52 | 50 | ||
53 | public string ComPlusComponent_ | 51 | public string ApplicationRoleRef |
54 | { | 52 | { |
55 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.ComPlusComponent_].AsString(); | 53 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.ApplicationRoleRef].AsString(); |
56 | set => this.Set((int)ComPlusRoleForComponentTupleFields.ComPlusComponent_, value); | 54 | set => this.Set((int)ComPlusRoleForComponentTupleFields.ApplicationRoleRef, value); |
57 | } | 55 | } |
58 | 56 | ||
59 | public string ApplicationRole_ | 57 | public string ComponentRef |
60 | { | 58 | { |
61 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.ApplicationRole_].AsString(); | 59 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.ComponentRef].AsString(); |
62 | set => this.Set((int)ComPlusRoleForComponentTupleFields.ApplicationRole_, value); | 60 | set => this.Set((int)ComPlusRoleForComponentTupleFields.ComponentRef, value); |
63 | } | ||
64 | |||
65 | public string Component_ | ||
66 | { | ||
67 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.Component_].AsString(); | ||
68 | set => this.Set((int)ComPlusRoleForComponentTupleFields.Component_, value); | ||
69 | } | 61 | } |
70 | } | 62 | } |
71 | } \ No newline at end of file | 63 | } \ No newline at end of file |