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/MsiServiceConfigTuple.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/MsiServiceConfigTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs b/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs index b0a58d9f..4943c245 100644 --- a/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs +++ b/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs | |||
| @@ -16,7 +16,7 @@ namespace WixToolset.Data | |||
| 16 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.OnUninstall), IntermediateFieldType.Bool), | 16 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.OnUninstall), IntermediateFieldType.Bool), |
| 17 | new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.ConfigType), IntermediateFieldType.Number), | 17 | new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.ConfigType), IntermediateFieldType.Number), |
| 18 | new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.Argument), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.Argument), IntermediateFieldType.String), |
| 19 | new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.Component_), IntermediateFieldType.String), | 19 | new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.ComponentRef), IntermediateFieldType.String), |
| 20 | }, | 20 | }, |
| 21 | typeof(MsiServiceConfigTuple)); | 21 | typeof(MsiServiceConfigTuple)); |
| 22 | } | 22 | } |
| @@ -33,7 +33,7 @@ namespace WixToolset.Data.Tuples | |||
| 33 | OnUninstall, | 33 | OnUninstall, |
| 34 | ConfigType, | 34 | ConfigType, |
| 35 | Argument, | 35 | Argument, |
| 36 | Component_, | 36 | ComponentRef, |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | public enum MsiServiceConfigType | 39 | public enum MsiServiceConfigType |
| @@ -93,10 +93,10 @@ namespace WixToolset.Data.Tuples | |||
| 93 | set => this.Set((int)MsiServiceConfigTupleFields.Argument, value); | 93 | set => this.Set((int)MsiServiceConfigTupleFields.Argument, value); |
| 94 | } | 94 | } |
| 95 | 95 | ||
| 96 | public string Component_ | 96 | public string ComponentRef |
| 97 | { | 97 | { |
| 98 | get => (string)this.Fields[(int)MsiServiceConfigTupleFields.Component_]; | 98 | get => (string)this.Fields[(int)MsiServiceConfigTupleFields.ComponentRef]; |
| 99 | set => this.Set((int)MsiServiceConfigTupleFields.Component_, value); | 99 | set => this.Set((int)MsiServiceConfigTupleFields.ComponentRef, value); |
| 100 | } | 100 | } |
| 101 | } | 101 | } |
| 102 | } \ No newline at end of file | 102 | } \ No newline at end of file |
