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/WixInstanceComponentTuple.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/WixInstanceComponentTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixInstanceComponentTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixInstanceComponentTuple.cs b/src/WixToolset.Data/Tuples/WixInstanceComponentTuple.cs index 3c9f69a0..c7530abf 100644 --- a/src/WixToolset.Data/Tuples/WixInstanceComponentTuple.cs +++ b/src/WixToolset.Data/Tuples/WixInstanceComponentTuple.cs | |||
| @@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.WixInstanceComponent, | 10 | TupleDefinitionType.WixInstanceComponent, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(WixInstanceComponentTupleFields.Component_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(WixInstanceComponentTupleFields.ComponentRef), IntermediateFieldType.String), |
| 14 | }, | 14 | }, |
| 15 | typeof(WixInstanceComponentTuple)); | 15 | typeof(WixInstanceComponentTuple)); |
| 16 | } | 16 | } |
| @@ -20,7 +20,7 @@ namespace WixToolset.Data.Tuples | |||
| 20 | { | 20 | { |
| 21 | public enum WixInstanceComponentTupleFields | 21 | public enum WixInstanceComponentTupleFields |
| 22 | { | 22 | { |
| 23 | Component_, | 23 | ComponentRef, |
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | public class WixInstanceComponentTuple : IntermediateTuple | 26 | public class WixInstanceComponentTuple : IntermediateTuple |
| @@ -35,10 +35,10 @@ namespace WixToolset.Data.Tuples | |||
| 35 | 35 | ||
| 36 | public IntermediateField this[WixInstanceComponentTupleFields index] => this.Fields[(int)index]; | 36 | public IntermediateField this[WixInstanceComponentTupleFields index] => this.Fields[(int)index]; |
| 37 | 37 | ||
| 38 | public string Component_ | 38 | public string ComponentRef |
| 39 | { | 39 | { |
| 40 | get => (string)this.Fields[(int)WixInstanceComponentTupleFields.Component_]; | 40 | get => (string)this.Fields[(int)WixInstanceComponentTupleFields.ComponentRef]; |
| 41 | set => this.Set((int)WixInstanceComponentTupleFields.Component_, value); | 41 | set => this.Set((int)WixInstanceComponentTupleFields.ComponentRef, value); |
| 42 | } | 42 | } |
| 43 | } | 43 | } |
| 44 | } \ No newline at end of file | 44 | } \ No newline at end of file |
