diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-05-22 14:45:33 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-05-23 15:43:40 -0700 |
| commit | b36433623fcac28cf620868430d49bc36fca2963 (patch) | |
| tree | 08f26c45c3d80ce665eade49ee7b542bf71da81c /src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs | |
| parent | 109ee5a02f9cec4775697b43655674fc70f4127a (diff) | |
| download | wix-b36433623fcac28cf620868430d49bc36fca2963.tar.gz wix-b36433623fcac28cf620868430d49bc36fca2963.tar.bz2 wix-b36433623fcac28cf620868430d49bc36fca2963.zip | |
Use "Ref" instead of "_" as the reference convention
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 |
