aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/TypeLibTuple.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/TypeLibTuple.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/TypeLibTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/TypeLibTuple.cs30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/WixToolset.Data/Tuples/TypeLibTuple.cs b/src/WixToolset.Data/Tuples/TypeLibTuple.cs
index 72169a60..14c69c1a 100644
--- a/src/WixToolset.Data/Tuples/TypeLibTuple.cs
+++ b/src/WixToolset.Data/Tuples/TypeLibTuple.cs
@@ -12,11 +12,11 @@ namespace WixToolset.Data
12 { 12 {
13 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.LibId), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.LibId), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Language), IntermediateFieldType.Number), 14 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Language), IntermediateFieldType.Number),
15 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Component_), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.ComponentRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Version), IntermediateFieldType.Number), 16 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Version), IntermediateFieldType.Number),
17 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Description), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Description), IntermediateFieldType.String),
18 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Directory_), IntermediateFieldType.String), 18 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.DirectoryRef), IntermediateFieldType.String),
19 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Feature_), IntermediateFieldType.String), 19 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.FeatureRef), IntermediateFieldType.String),
20 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Cost), IntermediateFieldType.Number), 20 new IntermediateFieldDefinition(nameof(TypeLibTupleFields.Cost), IntermediateFieldType.Number),
21 }, 21 },
22 typeof(TypeLibTuple)); 22 typeof(TypeLibTuple));
@@ -29,11 +29,11 @@ namespace WixToolset.Data.Tuples
29 { 29 {
30 LibId, 30 LibId,
31 Language, 31 Language,
32 Component_, 32 ComponentRef,
33 Version, 33 Version,
34 Description, 34 Description,
35 Directory_, 35 DirectoryRef,
36 Feature_, 36 FeatureRef,
37 Cost, 37 Cost,
38 } 38 }
39 39
@@ -61,10 +61,10 @@ namespace WixToolset.Data.Tuples
61 set => this.Set((int)TypeLibTupleFields.Language, value); 61 set => this.Set((int)TypeLibTupleFields.Language, value);
62 } 62 }
63 63
64 public string Component_ 64 public string ComponentRef
65 { 65 {
66 get => (string)this.Fields[(int)TypeLibTupleFields.Component_]; 66 get => (string)this.Fields[(int)TypeLibTupleFields.ComponentRef];
67 set => this.Set((int)TypeLibTupleFields.Component_, value); 67 set => this.Set((int)TypeLibTupleFields.ComponentRef, value);
68 } 68 }
69 69
70 public int Version 70 public int Version
@@ -79,16 +79,16 @@ namespace WixToolset.Data.Tuples
79 set => this.Set((int)TypeLibTupleFields.Description, value); 79 set => this.Set((int)TypeLibTupleFields.Description, value);
80 } 80 }
81 81
82 public string Directory_ 82 public string DirectoryRef
83 { 83 {
84 get => (string)this.Fields[(int)TypeLibTupleFields.Directory_]; 84 get => (string)this.Fields[(int)TypeLibTupleFields.DirectoryRef];
85 set => this.Set((int)TypeLibTupleFields.Directory_, value); 85 set => this.Set((int)TypeLibTupleFields.DirectoryRef, value);
86 } 86 }
87 87
88 public string Feature_ 88 public string FeatureRef
89 { 89 {
90 get => (string)this.Fields[(int)TypeLibTupleFields.Feature_]; 90 get => (string)this.Fields[(int)TypeLibTupleFields.FeatureRef];
91 set => this.Set((int)TypeLibTupleFields.Feature_, value); 91 set => this.Set((int)TypeLibTupleFields.FeatureRef, value);
92 } 92 }
93 93
94 public int Cost 94 public int Cost