aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ComponentTuple.cs
diff options
context:
space:
mode:
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 8af887ed..f573818e 100644
--- a/src/WixToolset.Data/Tuples/ComponentTuple.cs
+++ b/src/WixToolset.Data/Tuples/ComponentTuple.cs
@@ -72,19 +72,19 @@ namespace WixToolset.Data.Tuples
72 72
73 public string Component 73 public string Component
74 { 74 {
75 get => (string)this.Fields[(int)ComponentTupleFields.Component]?.Value; 75 get => (string)this.Fields[(int)ComponentTupleFields.Component];
76 set => this.Set((int)ComponentTupleFields.Component, value); 76 set => this.Set((int)ComponentTupleFields.Component, value);
77 } 77 }
78 78
79 public string ComponentId 79 public string ComponentId
80 { 80 {
81 get => (string)this.Fields[(int)ComponentTupleFields.ComponentId]?.Value; 81 get => (string)this.Fields[(int)ComponentTupleFields.ComponentId];
82 set => this.Set((int)ComponentTupleFields.ComponentId, value); 82 set => this.Set((int)ComponentTupleFields.ComponentId, value);
83 } 83 }
84 84
85 public string Directory_ 85 public string Directory_
86 { 86 {
87 get => (string)this.Fields[(int)ComponentTupleFields.Directory_]?.Value; 87 get => (string)this.Fields[(int)ComponentTupleFields.Directory_];
88 set => this.Set((int)ComponentTupleFields.Directory_, value); 88 set => this.Set((int)ComponentTupleFields.Directory_, value);
89 } 89 }
90 90
@@ -144,13 +144,13 @@ namespace WixToolset.Data.Tuples
144 144
145 public string Condition 145 public string Condition
146 { 146 {
147 get => (string)this.Fields[(int)ComponentTupleFields.Condition]?.Value; 147 get => (string)this.Fields[(int)ComponentTupleFields.Condition];
148 set => this.Set((int)ComponentTupleFields.Condition, value); 148 set => this.Set((int)ComponentTupleFields.Condition, value);
149 } 149 }
150 150
151 public string KeyPath 151 public string KeyPath
152 { 152 {
153 get => (string)this.Fields[(int)ComponentTupleFields.KeyPath]?.Value; 153 get => (string)this.Fields[(int)ComponentTupleFields.KeyPath];
154 set => this.Set((int)ComponentTupleFields.KeyPath, value); 154 set => this.Set((int)ComponentTupleFields.KeyPath, value);
155 } 155 }
156 156