aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ComponentTuple.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/ComponentTuple.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/ComponentTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ComponentTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ComponentTuple.cs b/src/WixToolset.Data/Tuples/ComponentTuple.cs
index 67cb7042..51693b53 100644
--- a/src/WixToolset.Data/Tuples/ComponentTuple.cs
+++ b/src/WixToolset.Data/Tuples/ComponentTuple.cs
@@ -11,7 +11,7 @@ namespace WixToolset.Data
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(ComponentTupleFields.ComponentId), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(ComponentTupleFields.ComponentId), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(ComponentTupleFields.Directory_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ComponentTupleFields.DirectoryRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ComponentTupleFields.Location), IntermediateFieldType.Number), 15 new IntermediateFieldDefinition(nameof(ComponentTupleFields.Location), IntermediateFieldType.Number),
16 new IntermediateFieldDefinition(nameof(ComponentTupleFields.DisableRegistryReflection), IntermediateFieldType.Bool), 16 new IntermediateFieldDefinition(nameof(ComponentTupleFields.DisableRegistryReflection), IntermediateFieldType.Bool),
17 new IntermediateFieldDefinition(nameof(ComponentTupleFields.NeverOverwrite), IntermediateFieldType.Bool), 17 new IntermediateFieldDefinition(nameof(ComponentTupleFields.NeverOverwrite), IntermediateFieldType.Bool),
@@ -34,7 +34,7 @@ namespace WixToolset.Data.Tuples
34 public enum ComponentTupleFields 34 public enum ComponentTupleFields
35 { 35 {
36 ComponentId, 36 ComponentId,
37 Directory_, 37 DirectoryRef,
38 Location, 38 Location,
39 DisableRegistryReflection, 39 DisableRegistryReflection,
40 NeverOverwrite, 40 NeverOverwrite,
@@ -74,10 +74,10 @@ namespace WixToolset.Data.Tuples
74 set => this.Set((int)ComponentTupleFields.ComponentId, value); 74 set => this.Set((int)ComponentTupleFields.ComponentId, value);
75 } 75 }
76 76
77 public string Directory_ 77 public string DirectoryRef
78 { 78 {
79 get => (string)this.Fields[(int)ComponentTupleFields.Directory_]; 79 get => (string)this.Fields[(int)ComponentTupleFields.DirectoryRef];
80 set => this.Set((int)ComponentTupleFields.Directory_, value); 80 set => this.Set((int)ComponentTupleFields.DirectoryRef, value);
81 } 81 }
82 82
83 public ComponentLocation Location 83 public ComponentLocation Location