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/FeatureTuple.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/FeatureTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/FeatureTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/FeatureTuple.cs b/src/WixToolset.Data/Tuples/FeatureTuple.cs index 14a1a9f5..b057d079 100644 --- a/src/WixToolset.Data/Tuples/FeatureTuple.cs +++ b/src/WixToolset.Data/Tuples/FeatureTuple.cs | |||
| @@ -10,12 +10,12 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.Feature, | 10 | TupleDefinitionType.Feature, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Feature_Parent), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.ParentFeatureRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Title), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Title), IntermediateFieldType.String), |
| 15 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Description), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Description), IntermediateFieldType.String), |
| 16 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Display), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Display), IntermediateFieldType.Number), |
| 17 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Level), IntermediateFieldType.Number), | 17 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Level), IntermediateFieldType.Number), |
| 18 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.Directory_), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.DirectoryRef), IntermediateFieldType.String), |
| 19 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.DisallowAbsent), IntermediateFieldType.Bool), | 19 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.DisallowAbsent), IntermediateFieldType.Bool), |
| 20 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.DisallowAdvertise), IntermediateFieldType.Bool), | 20 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.DisallowAdvertise), IntermediateFieldType.Bool), |
| 21 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.InstallDefault), IntermediateFieldType.Number), | 21 | new IntermediateFieldDefinition(nameof(FeatureTupleFields.InstallDefault), IntermediateFieldType.Number), |
| @@ -29,12 +29,12 @@ namespace WixToolset.Data.Tuples | |||
| 29 | { | 29 | { |
| 30 | public enum FeatureTupleFields | 30 | public enum FeatureTupleFields |
| 31 | { | 31 | { |
| 32 | Feature_Parent, | 32 | ParentFeatureRef, |
| 33 | Title, | 33 | Title, |
| 34 | Description, | 34 | Description, |
| 35 | Display, | 35 | Display, |
| 36 | Level, | 36 | Level, |
| 37 | Directory_, | 37 | DirectoryRef, |
| 38 | DisallowAbsent, | 38 | DisallowAbsent, |
| 39 | DisallowAdvertise, | 39 | DisallowAdvertise, |
| 40 | InstallDefault, | 40 | InstallDefault, |
| @@ -66,10 +66,10 @@ namespace WixToolset.Data.Tuples | |||
| 66 | 66 | ||
| 67 | public IntermediateField this[FeatureTupleFields index] => this.Fields[(int)index]; | 67 | public IntermediateField this[FeatureTupleFields index] => this.Fields[(int)index]; |
| 68 | 68 | ||
| 69 | public string Feature_Parent | 69 | public string ParentFeatureRef |
| 70 | { | 70 | { |
| 71 | get => (string)this.Fields[(int)FeatureTupleFields.Feature_Parent]; | 71 | get => (string)this.Fields[(int)FeatureTupleFields.ParentFeatureRef]; |
| 72 | set => this.Set((int)FeatureTupleFields.Feature_Parent, value); | 72 | set => this.Set((int)FeatureTupleFields.ParentFeatureRef, value); |
| 73 | } | 73 | } |
| 74 | 74 | ||
| 75 | public string Title | 75 | public string Title |
| @@ -96,10 +96,10 @@ namespace WixToolset.Data.Tuples | |||
| 96 | set => this.Set((int)FeatureTupleFields.Level, value); | 96 | set => this.Set((int)FeatureTupleFields.Level, value); |
| 97 | } | 97 | } |
| 98 | 98 | ||
| 99 | public string Directory_ | 99 | public string DirectoryRef |
| 100 | { | 100 | { |
| 101 | get => (string)this.Fields[(int)FeatureTupleFields.Directory_]; | 101 | get => (string)this.Fields[(int)FeatureTupleFields.DirectoryRef]; |
| 102 | set => this.Set((int)FeatureTupleFields.Directory_, value); | 102 | set => this.Set((int)FeatureTupleFields.DirectoryRef, value); |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | public bool DisallowAbsent | 105 | public bool DisallowAbsent |
