diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs b/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs index 85484381..8a0001ae 100644 --- a/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs +++ b/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs | |||
| @@ -19,7 +19,7 @@ namespace WixToolset.Data | |||
| 19 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Command), IntermediateFieldType.String), | 19 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Command), IntermediateFieldType.String), |
| 20 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Actions), IntermediateFieldType.String), | 20 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Actions), IntermediateFieldType.String), |
| 21 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.DelayActions), IntermediateFieldType.String), | 21 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.DelayActions), IntermediateFieldType.String), |
| 22 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Component_), IntermediateFieldType.String), | 22 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.ComponentRef), IntermediateFieldType.String), |
| 23 | }, | 23 | }, |
| 24 | typeof(MsiServiceConfigFailureActionsTuple)); | 24 | typeof(MsiServiceConfigFailureActionsTuple)); |
| 25 | } | 25 | } |
| @@ -38,7 +38,7 @@ namespace WixToolset.Data.Tuples | |||
| 38 | Command, | 38 | Command, |
| 39 | Actions, | 39 | Actions, |
| 40 | DelayActions, | 40 | DelayActions, |
| 41 | Component_, | 41 | ComponentRef, |
| 42 | } | 42 | } |
| 43 | 43 | ||
| 44 | public class MsiServiceConfigFailureActionsTuple : IntermediateTuple | 44 | public class MsiServiceConfigFailureActionsTuple : IntermediateTuple |
| @@ -107,10 +107,10 @@ namespace WixToolset.Data.Tuples | |||
| 107 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.DelayActions, value); | 107 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.DelayActions, value); |
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | public string Component_ | 110 | public string ComponentRef |
| 111 | { | 111 | { |
| 112 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Component_]; | 112 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.ComponentRef]; |
| 113 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Component_, value); | 113 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.ComponentRef, value); |
| 114 | } | 114 | } |
| 115 | } | 115 | } |
| 116 | } \ No newline at end of file | 116 | } \ No newline at end of file |
