aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 14:45:33 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commitb36433623fcac28cf620868430d49bc36fca2963 (patch)
tree08f26c45c3d80ce665eade49ee7b542bf71da81c /src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs
parent109ee5a02f9cec4775697b43655674fc70f4127a (diff)
downloadwix-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/FeatureComponentsTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs b/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs
index 33f17ee9..1bda9c4c 100644
--- a/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs
+++ b/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs
@@ -10,8 +10,8 @@ namespace WixToolset.Data
10 TupleDefinitionType.FeatureComponents, 10 TupleDefinitionType.FeatureComponents,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(FeatureComponentsTupleFields.Feature_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(FeatureComponentsTupleFields.FeatureRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(FeatureComponentsTupleFields.Component_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(FeatureComponentsTupleFields.ComponentRef), IntermediateFieldType.String),
15 }, 15 },
16 typeof(FeatureComponentsTuple)); 16 typeof(FeatureComponentsTuple));
17 } 17 }
@@ -21,8 +21,8 @@ namespace WixToolset.Data.Tuples
21{ 21{
22 public enum FeatureComponentsTupleFields 22 public enum FeatureComponentsTupleFields
23 { 23 {
24 Feature_, 24 FeatureRef,
25 Component_, 25 ComponentRef,
26 } 26 }
27 27
28 public class FeatureComponentsTuple : IntermediateTuple 28 public class FeatureComponentsTuple : IntermediateTuple
@@ -37,16 +37,16 @@ namespace WixToolset.Data.Tuples
37 37
38 public IntermediateField this[FeatureComponentsTupleFields index] => this.Fields[(int)index]; 38 public IntermediateField this[FeatureComponentsTupleFields index] => this.Fields[(int)index];
39 39
40 public string Feature_ 40 public string FeatureRef
41 { 41 {
42 get => (string)this.Fields[(int)FeatureComponentsTupleFields.Feature_]; 42 get => (string)this.Fields[(int)FeatureComponentsTupleFields.FeatureRef];
43 set => this.Set((int)FeatureComponentsTupleFields.Feature_, value); 43 set => this.Set((int)FeatureComponentsTupleFields.FeatureRef, value);
44 } 44 }
45 45
46 public string Component_ 46 public string ComponentRef
47 { 47 {
48 get => (string)this.Fields[(int)FeatureComponentsTupleFields.Component_]; 48 get => (string)this.Fields[(int)FeatureComponentsTupleFields.ComponentRef];
49 set => this.Set((int)FeatureComponentsTupleFields.Component_, value); 49 set => this.Set((int)FeatureComponentsTupleFields.ComponentRef, value);
50 } 50 }
51 } 51 }
52} \ No newline at end of file 52} \ No newline at end of file