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