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/WixComponentSearchTuple.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/WixComponentSearchTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs b/src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs index fc3c23e3..47cccf25 100644 --- a/src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs +++ b/src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs | |||
| @@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.WixComponentSearch, | 10 | TupleDefinitionType.WixComponentSearch, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(WixComponentSearchTupleFields.WixSearch_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(WixComponentSearchTupleFields.WixSearchRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(WixComponentSearchTupleFields.Guid), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixComponentSearchTupleFields.Guid), IntermediateFieldType.String), |
| 15 | new IntermediateFieldDefinition(nameof(WixComponentSearchTupleFields.ProductCode), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixComponentSearchTupleFields.ProductCode), IntermediateFieldType.String), |
| 16 | new IntermediateFieldDefinition(nameof(WixComponentSearchTupleFields.Attributes), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(WixComponentSearchTupleFields.Attributes), IntermediateFieldType.Number), |
| @@ -23,7 +23,7 @@ namespace WixToolset.Data.Tuples | |||
| 23 | { | 23 | { |
| 24 | public enum WixComponentSearchTupleFields | 24 | public enum WixComponentSearchTupleFields |
| 25 | { | 25 | { |
| 26 | WixSearch_, | 26 | WixSearchRef, |
| 27 | Guid, | 27 | Guid, |
| 28 | ProductCode, | 28 | ProductCode, |
| 29 | Attributes, | 29 | Attributes, |
| @@ -41,10 +41,10 @@ namespace WixToolset.Data.Tuples | |||
| 41 | 41 | ||
| 42 | public IntermediateField this[WixComponentSearchTupleFields index] => this.Fields[(int)index]; | 42 | public IntermediateField this[WixComponentSearchTupleFields index] => this.Fields[(int)index]; |
| 43 | 43 | ||
| 44 | public string WixSearch_ | 44 | public string WixSearchRef |
| 45 | { | 45 | { |
| 46 | get => (string)this.Fields[(int)WixComponentSearchTupleFields.WixSearch_]; | 46 | get => (string)this.Fields[(int)WixComponentSearchTupleFields.WixSearchRef]; |
| 47 | set => this.Set((int)WixComponentSearchTupleFields.WixSearch_, value); | 47 | set => this.Set((int)WixComponentSearchTupleFields.WixSearchRef, value); |
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | public string Guid | 50 | public string Guid |
