diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs b/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs index de13cdb0..42f15660 100644 --- a/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs +++ b/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs | |||
@@ -14,7 +14,7 @@ namespace WixToolset.Data | |||
14 | new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Key), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Key), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Name), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Name), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Action), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Action), IntermediateFieldType.Number), |
17 | new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Component_), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.ComponentRef), IntermediateFieldType.String), |
18 | }, | 18 | }, |
19 | typeof(RemoveRegistryTuple)); | 19 | typeof(RemoveRegistryTuple)); |
20 | } | 20 | } |
@@ -28,7 +28,7 @@ namespace WixToolset.Data.Tuples | |||
28 | Key, | 28 | Key, |
29 | Name, | 29 | Name, |
30 | Action, | 30 | Action, |
31 | Component_, | 31 | ComponentRef, |
32 | } | 32 | } |
33 | 33 | ||
34 | public enum RemoveRegistryActionType | 34 | public enum RemoveRegistryActionType |
@@ -73,10 +73,10 @@ namespace WixToolset.Data.Tuples | |||
73 | set => this.Set((int)RemoveRegistryTupleFields.Action, (int)value); | 73 | set => this.Set((int)RemoveRegistryTupleFields.Action, (int)value); |
74 | } | 74 | } |
75 | 75 | ||
76 | public string Component_ | 76 | public string ComponentRef |
77 | { | 77 | { |
78 | get => (string)this.Fields[(int)RemoveRegistryTupleFields.Component_]; | 78 | get => (string)this.Fields[(int)RemoveRegistryTupleFields.ComponentRef]; |
79 | set => this.Set((int)RemoveRegistryTupleFields.Component_, value); | 79 | set => this.Set((int)RemoveRegistryTupleFields.ComponentRef, value); |
80 | } | 80 | } |
81 | } | 81 | } |
82 | } \ No newline at end of file | 82 | } \ No newline at end of file |