aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/ComPlusComponentPropertyTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wixext/Tuples/ComPlusComponentPropertyTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/Tuples/ComPlusComponentPropertyTuple.cs b/src/wixext/Tuples/ComPlusComponentPropertyTuple.cs
index 81651343..4de5a032 100644
--- a/src/wixext/Tuples/ComPlusComponentPropertyTuple.cs
+++ b/src/wixext/Tuples/ComPlusComponentPropertyTuple.cs
@@ -11,7 +11,7 @@ namespace WixToolset.ComPlus
11 ComPlusTupleDefinitionType.ComPlusComponentProperty.ToString(), 11 ComPlusTupleDefinitionType.ComPlusComponentProperty.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(ComPlusComponentPropertyTupleFields.ComPlusComponent_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ComPlusComponentPropertyTupleFields.ComPlusComponentRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ComPlusComponentPropertyTupleFields.Name), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(ComPlusComponentPropertyTupleFields.Name), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(ComPlusComponentPropertyTupleFields.Value), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(ComPlusComponentPropertyTupleFields.Value), IntermediateFieldType.String),
17 }, 17 },
@@ -25,7 +25,7 @@ namespace WixToolset.ComPlus.Tuples
25 25
26 public enum ComPlusComponentPropertyTupleFields 26 public enum ComPlusComponentPropertyTupleFields
27 { 27 {
28 ComPlusComponent_, 28 ComPlusComponentRef,
29 Name, 29 Name,
30 Value, 30 Value,
31 } 31 }
@@ -42,10 +42,10 @@ namespace WixToolset.ComPlus.Tuples
42 42
43 public IntermediateField this[ComPlusComponentPropertyTupleFields index] => this.Fields[(int)index]; 43 public IntermediateField this[ComPlusComponentPropertyTupleFields index] => this.Fields[(int)index];
44 44
45 public string ComPlusComponent_ 45 public string ComPlusComponentRef
46 { 46 {
47 get => this.Fields[(int)ComPlusComponentPropertyTupleFields.ComPlusComponent_].AsString(); 47 get => this.Fields[(int)ComPlusComponentPropertyTupleFields.ComPlusComponentRef].AsString();
48 set => this.Set((int)ComPlusComponentPropertyTupleFields.ComPlusComponent_, value); 48 set => this.Set((int)ComPlusComponentPropertyTupleFields.ComPlusComponentRef, value);
49 } 49 }
50 50
51 public string Name 51 public string Name