aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/MsiAssemblyNameTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/MsiAssemblyNameTuple.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiAssemblyNameTuple.cs b/src/WixToolset.Data/Tuples/MsiAssemblyNameTuple.cs
index a8e97b00..f4da9ea2 100644
--- a/src/WixToolset.Data/Tuples/MsiAssemblyNameTuple.cs
+++ b/src/WixToolset.Data/Tuples/MsiAssemblyNameTuple.cs
@@ -41,19 +41,19 @@ namespace WixToolset.Data.Tuples
41 41
42 public string Component_ 42 public string Component_
43 { 43 {
44 get => (string)this.Fields[(int)MsiAssemblyNameTupleFields.Component_]?.Value; 44 get => (string)this.Fields[(int)MsiAssemblyNameTupleFields.Component_];
45 set => this.Set((int)MsiAssemblyNameTupleFields.Component_, value); 45 set => this.Set((int)MsiAssemblyNameTupleFields.Component_, value);
46 } 46 }
47 47
48 public string Name 48 public string Name
49 { 49 {
50 get => (string)this.Fields[(int)MsiAssemblyNameTupleFields.Name]?.Value; 50 get => (string)this.Fields[(int)MsiAssemblyNameTupleFields.Name];
51 set => this.Set((int)MsiAssemblyNameTupleFields.Name, value); 51 set => this.Set((int)MsiAssemblyNameTupleFields.Name, value);
52 } 52 }
53 53
54 public string Value 54 public string Value
55 { 55 {
56 get => (string)this.Fields[(int)MsiAssemblyNameTupleFields.Value]?.Value; 56 get => (string)this.Fields[(int)MsiAssemblyNameTupleFields.Value];
57 set => this.Set((int)MsiAssemblyNameTupleFields.Value, value); 57 set => this.Set((int)MsiAssemblyNameTupleFields.Value, value);
58 } 58 }
59 } 59 }