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