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/ComplusTuple.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/ComplusTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ComplusTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ComplusTuple.cs b/src/WixToolset.Data/Tuples/ComplusTuple.cs index f011bbd4..bd76c0d3 100644 --- a/src/WixToolset.Data/Tuples/ComplusTuple.cs +++ b/src/WixToolset.Data/Tuples/ComplusTuple.cs | |||
| @@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.Complus, | 10 | TupleDefinitionType.Complus, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(ComplusTupleFields.Component_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(ComplusTupleFields.ComponentRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(ComplusTupleFields.ExpType), IntermediateFieldType.Number), | 14 | new IntermediateFieldDefinition(nameof(ComplusTupleFields.ExpType), IntermediateFieldType.Number), |
| 15 | }, | 15 | }, |
| 16 | typeof(ComplusTuple)); | 16 | typeof(ComplusTuple)); |
| @@ -21,7 +21,7 @@ namespace WixToolset.Data.Tuples | |||
| 21 | { | 21 | { |
| 22 | public enum ComplusTupleFields | 22 | public enum ComplusTupleFields |
| 23 | { | 23 | { |
| 24 | Component_, | 24 | ComponentRef, |
| 25 | ExpType, | 25 | ExpType, |
| 26 | } | 26 | } |
| 27 | 27 | ||
| @@ -37,10 +37,10 @@ namespace WixToolset.Data.Tuples | |||
| 37 | 37 | ||
| 38 | public IntermediateField this[ComplusTupleFields index] => this.Fields[(int)index]; | 38 | public IntermediateField this[ComplusTupleFields index] => this.Fields[(int)index]; |
| 39 | 39 | ||
| 40 | public string Component_ | 40 | public string ComponentRef |
| 41 | { | 41 | { |
| 42 | get => (string)this.Fields[(int)ComplusTupleFields.Component_]; | 42 | get => (string)this.Fields[(int)ComplusTupleFields.ComponentRef]; |
| 43 | set => this.Set((int)ComplusTupleFields.Component_, value); | 43 | set => this.Set((int)ComplusTupleFields.ComponentRef, value); |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | public int ExpType | 46 | public int ExpType |
