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/IsolatedComponentTuple.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/IsolatedComponentTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/IsolatedComponentTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/IsolatedComponentTuple.cs b/src/WixToolset.Data/Tuples/IsolatedComponentTuple.cs index 325416e6..afd9891b 100644 --- a/src/WixToolset.Data/Tuples/IsolatedComponentTuple.cs +++ b/src/WixToolset.Data/Tuples/IsolatedComponentTuple.cs | |||
| @@ -10,8 +10,8 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.IsolatedComponent, | 10 | TupleDefinitionType.IsolatedComponent, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(IsolatedComponentTupleFields.Component_Shared), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(IsolatedComponentTupleFields.SharedComponentRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(IsolatedComponentTupleFields.Component_Application), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(IsolatedComponentTupleFields.ApplicationComponentRef), IntermediateFieldType.String), |
| 15 | }, | 15 | }, |
| 16 | typeof(IsolatedComponentTuple)); | 16 | typeof(IsolatedComponentTuple)); |
| 17 | } | 17 | } |
| @@ -21,8 +21,8 @@ namespace WixToolset.Data.Tuples | |||
| 21 | { | 21 | { |
| 22 | public enum IsolatedComponentTupleFields | 22 | public enum IsolatedComponentTupleFields |
| 23 | { | 23 | { |
| 24 | Component_Shared, | 24 | SharedComponentRef, |
| 25 | Component_Application, | 25 | ApplicationComponentRef, |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | public class IsolatedComponentTuple : IntermediateTuple | 28 | public class IsolatedComponentTuple : IntermediateTuple |
| @@ -37,16 +37,16 @@ namespace WixToolset.Data.Tuples | |||
| 37 | 37 | ||
| 38 | public IntermediateField this[IsolatedComponentTupleFields index] => this.Fields[(int)index]; | 38 | public IntermediateField this[IsolatedComponentTupleFields index] => this.Fields[(int)index]; |
| 39 | 39 | ||
| 40 | public string Component_Shared | 40 | public string SharedComponentRef |
| 41 | { | 41 | { |
| 42 | get => (string)this.Fields[(int)IsolatedComponentTupleFields.Component_Shared]; | 42 | get => (string)this.Fields[(int)IsolatedComponentTupleFields.SharedComponentRef]; |
| 43 | set => this.Set((int)IsolatedComponentTupleFields.Component_Shared, value); | 43 | set => this.Set((int)IsolatedComponentTupleFields.SharedComponentRef, value); |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | public string Component_Application | 46 | public string ApplicationComponentRef |
| 47 | { | 47 | { |
| 48 | get => (string)this.Fields[(int)IsolatedComponentTupleFields.Component_Application]; | 48 | get => (string)this.Fields[(int)IsolatedComponentTupleFields.ApplicationComponentRef]; |
| 49 | set => this.Set((int)IsolatedComponentTupleFields.Component_Application, value); | 49 | set => this.Set((int)IsolatedComponentTupleFields.ApplicationComponentRef, value); |
| 50 | } | 50 | } |
| 51 | } | 51 | } |
| 52 | } | 52 | } |
