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