diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/AppSearchTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/AppSearchTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/AppSearchTuple.cs b/src/WixToolset.Data/Tuples/AppSearchTuple.cs index e32064b8..4c03f847 100644 --- a/src/WixToolset.Data/Tuples/AppSearchTuple.cs +++ b/src/WixToolset.Data/Tuples/AppSearchTuple.cs | |||
@@ -39,13 +39,13 @@ namespace WixToolset.Data.Tuples | |||
39 | 39 | ||
40 | public string Property | 40 | public string Property |
41 | { | 41 | { |
42 | get => (string)this.Fields[(int)AppSearchTupleFields.Property]?.Value; | 42 | get => (string)this.Fields[(int)AppSearchTupleFields.Property]; |
43 | set => this.Set((int)AppSearchTupleFields.Property, value); | 43 | set => this.Set((int)AppSearchTupleFields.Property, value); |
44 | } | 44 | } |
45 | 45 | ||
46 | public string Signature_ | 46 | public string Signature_ |
47 | { | 47 | { |
48 | get => (string)this.Fields[(int)AppSearchTupleFields.Signature_]?.Value; | 48 | get => (string)this.Fields[(int)AppSearchTupleFields.Signature_]; |
49 | set => this.Set((int)AppSearchTupleFields.Signature_, value); | 49 | set => this.Set((int)AppSearchTupleFields.Signature_, value); |
50 | } | 50 | } |
51 | } | 51 | } |