diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs b/src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs index 7aad13d2..fc3c23e3 100644 --- a/src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs +++ b/src/WixToolset.Data/Tuples/WixComponentSearchTuple.cs | |||
@@ -43,25 +43,25 @@ namespace WixToolset.Data.Tuples | |||
43 | 43 | ||
44 | public string WixSearch_ | 44 | public string WixSearch_ |
45 | { | 45 | { |
46 | get => (string)this.Fields[(int)WixComponentSearchTupleFields.WixSearch_]?.Value; | 46 | get => (string)this.Fields[(int)WixComponentSearchTupleFields.WixSearch_]; |
47 | set => this.Set((int)WixComponentSearchTupleFields.WixSearch_, value); | 47 | set => this.Set((int)WixComponentSearchTupleFields.WixSearch_, value); |
48 | } | 48 | } |
49 | 49 | ||
50 | public string Guid | 50 | public string Guid |
51 | { | 51 | { |
52 | get => (string)this.Fields[(int)WixComponentSearchTupleFields.Guid]?.Value; | 52 | get => (string)this.Fields[(int)WixComponentSearchTupleFields.Guid]; |
53 | set => this.Set((int)WixComponentSearchTupleFields.Guid, value); | 53 | set => this.Set((int)WixComponentSearchTupleFields.Guid, value); |
54 | } | 54 | } |
55 | 55 | ||
56 | public string ProductCode | 56 | public string ProductCode |
57 | { | 57 | { |
58 | get => (string)this.Fields[(int)WixComponentSearchTupleFields.ProductCode]?.Value; | 58 | get => (string)this.Fields[(int)WixComponentSearchTupleFields.ProductCode]; |
59 | set => this.Set((int)WixComponentSearchTupleFields.ProductCode, value); | 59 | set => this.Set((int)WixComponentSearchTupleFields.ProductCode, value); |
60 | } | 60 | } |
61 | 61 | ||
62 | public int Attributes | 62 | public int Attributes |
63 | { | 63 | { |
64 | get => (int)this.Fields[(int)WixComponentSearchTupleFields.Attributes]?.Value; | 64 | get => (int)this.Fields[(int)WixComponentSearchTupleFields.Attributes]; |
65 | set => this.Set((int)WixComponentSearchTupleFields.Attributes, value); | 65 | set => this.Set((int)WixComponentSearchTupleFields.Attributes, value); |
66 | } | 66 | } |
67 | } | 67 | } |