aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/RemoveIniFileTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/RemoveIniFileTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/RemoveIniFileTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/RemoveIniFileTuple.cs b/src/WixToolset.Data/Tuples/RemoveIniFileTuple.cs
index 69990a31..22aa7065 100644
--- a/src/WixToolset.Data/Tuples/RemoveIniFileTuple.cs
+++ b/src/WixToolset.Data/Tuples/RemoveIniFileTuple.cs
@@ -17,7 +17,7 @@ namespace WixToolset.Data
17 new IntermediateFieldDefinition(nameof(RemoveIniFileTupleFields.Key), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(RemoveIniFileTupleFields.Key), IntermediateFieldType.String),
18 new IntermediateFieldDefinition(nameof(RemoveIniFileTupleFields.Value), IntermediateFieldType.String), 18 new IntermediateFieldDefinition(nameof(RemoveIniFileTupleFields.Value), IntermediateFieldType.String),
19 new IntermediateFieldDefinition(nameof(RemoveIniFileTupleFields.Action), IntermediateFieldType.Number), 19 new IntermediateFieldDefinition(nameof(RemoveIniFileTupleFields.Action), IntermediateFieldType.Number),
20 new IntermediateFieldDefinition(nameof(RemoveIniFileTupleFields.Component_), IntermediateFieldType.String), 20 new IntermediateFieldDefinition(nameof(RemoveIniFileTupleFields.ComponentRef), IntermediateFieldType.String),
21 }, 21 },
22 typeof(RemoveIniFileTuple)); 22 typeof(RemoveIniFileTuple));
23 } 23 }
@@ -34,7 +34,7 @@ namespace WixToolset.Data.Tuples
34 Key, 34 Key,
35 Value, 35 Value,
36 Action, 36 Action,
37 Component_, 37 ComponentRef,
38 } 38 }
39 39
40 public class RemoveIniFileTuple : IntermediateTuple 40 public class RemoveIniFileTuple : IntermediateTuple
@@ -91,10 +91,10 @@ namespace WixToolset.Data.Tuples
91 set => this.Set((int)RemoveIniFileTupleFields.Action, value); 91 set => this.Set((int)RemoveIniFileTupleFields.Action, value);
92 } 92 }
93 93
94 public string Component_ 94 public string ComponentRef
95 { 95 {
96 get => (string)this.Fields[(int)RemoveIniFileTupleFields.Component_]; 96 get => (string)this.Fields[(int)RemoveIniFileTupleFields.ComponentRef];
97 set => this.Set((int)RemoveIniFileTupleFields.Component_, value); 97 set => this.Set((int)RemoveIniFileTupleFields.ComponentRef, value);
98 } 98 }
99 } 99 }
100} \ No newline at end of file 100} \ No newline at end of file