aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixBundleExePackageTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-16 12:18:36 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commit505fe69d85c90184cd37290ccb0120fec6074c20 (patch)
tree685314724a00232c2cad02e73c88214bee25df4f /src/WixToolset.Data/Tuples/WixBundleExePackageTuple.cs
parentac1400ac5502db2f975e94dc803c155fd6a0a0e0 (diff)
downloadwix-505fe69d85c90184cd37290ccb0120fec6074c20.tar.gz
wix-505fe69d85c90184cd37290ccb0120fec6074c20.tar.bz2
wix-505fe69d85c90184cd37290ccb0120fec6074c20.zip
Remove redundant `?.Value` from strongly typed accesses
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixBundleExePackageTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixBundleExePackageTuple.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundleExePackageTuple.cs b/src/WixToolset.Data/Tuples/WixBundleExePackageTuple.cs
index 7ba036f3..bc2f42e1 100644
--- a/src/WixToolset.Data/Tuples/WixBundleExePackageTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixBundleExePackageTuple.cs
@@ -57,43 +57,43 @@ namespace WixToolset.Data.Tuples
57 57
58 public string WixBundlePackage_ 58 public string WixBundlePackage_
59 { 59 {
60 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.WixBundlePackage_]?.Value; 60 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.WixBundlePackage_];
61 set => this.Set((int)WixBundleExePackageTupleFields.WixBundlePackage_, value); 61 set => this.Set((int)WixBundleExePackageTupleFields.WixBundlePackage_, value);
62 } 62 }
63 63
64 public WixBundleExePackageAttributes Attributes 64 public WixBundleExePackageAttributes Attributes
65 { 65 {
66 get => (WixBundleExePackageAttributes)(int)this.Fields[(int)WixBundleExePackageTupleFields.Attributes]?.Value; 66 get => (WixBundleExePackageAttributes)(int)this.Fields[(int)WixBundleExePackageTupleFields.Attributes];
67 set => this.Set((int)WixBundleExePackageTupleFields.Attributes, (int)value); 67 set => this.Set((int)WixBundleExePackageTupleFields.Attributes, (int)value);
68 } 68 }
69 69
70 public string DetectCondition 70 public string DetectCondition
71 { 71 {
72 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.DetectCondition]?.Value; 72 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.DetectCondition];
73 set => this.Set((int)WixBundleExePackageTupleFields.DetectCondition, value); 73 set => this.Set((int)WixBundleExePackageTupleFields.DetectCondition, value);
74 } 74 }
75 75
76 public string InstallCommand 76 public string InstallCommand
77 { 77 {
78 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.InstallCommand]?.Value; 78 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.InstallCommand];
79 set => this.Set((int)WixBundleExePackageTupleFields.InstallCommand, value); 79 set => this.Set((int)WixBundleExePackageTupleFields.InstallCommand, value);
80 } 80 }
81 81
82 public string RepairCommand 82 public string RepairCommand
83 { 83 {
84 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.RepairCommand]?.Value; 84 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.RepairCommand];
85 set => this.Set((int)WixBundleExePackageTupleFields.RepairCommand, value); 85 set => this.Set((int)WixBundleExePackageTupleFields.RepairCommand, value);
86 } 86 }
87 87
88 public string UninstallCommand 88 public string UninstallCommand
89 { 89 {
90 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.UninstallCommand]?.Value; 90 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.UninstallCommand];
91 set => this.Set((int)WixBundleExePackageTupleFields.UninstallCommand, value); 91 set => this.Set((int)WixBundleExePackageTupleFields.UninstallCommand, value);
92 } 92 }
93 93
94 public string ExeProtocol 94 public string ExeProtocol
95 { 95 {
96 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.ExeProtocol]?.Value; 96 get => (string)this.Fields[(int)WixBundleExePackageTupleFields.ExeProtocol];
97 set => this.Set((int)WixBundleExePackageTupleFields.ExeProtocol, value); 97 set => this.Set((int)WixBundleExePackageTupleFields.ExeProtocol, value);
98 } 98 }
99 } 99 }