aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixBundleContainerTuple.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-13 16:39:11 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-13 20:28:02 +1000
commitddb4161e3d9d13703b0df2915e68b5b4ef47e71b (patch)
treeb2a6033b3875662f6dee47295b15ceb4463d23a9 /src/WixToolset.Data/Tuples/WixBundleContainerTuple.cs
parentd0d447ad64afdd5956856c4c6b6599f69a522d6b (diff)
downloadwix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.tar.gz
wix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.tar.bz2
wix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.zip
Try to be more accurate in the tuples with nullable fields.
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixBundleContainerTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixBundleContainerTuple.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundleContainerTuple.cs b/src/WixToolset.Data/Tuples/WixBundleContainerTuple.cs
index ed12a804..a0f64611 100644
--- a/src/WixToolset.Data/Tuples/WixBundleContainerTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixBundleContainerTuple.cs
@@ -76,9 +76,9 @@ namespace WixToolset.Data.Tuples
76 set => this.Set((int)WixBundleContainerTupleFields.DownloadUrl, value); 76 set => this.Set((int)WixBundleContainerTupleFields.DownloadUrl, value);
77 } 77 }
78 78
79 public long Size 79 public long? Size
80 { 80 {
81 get => (long)this.Fields[(int)WixBundleContainerTupleFields.Size]; 81 get => (long?)this.Fields[(int)WixBundleContainerTupleFields.Size];
82 set => this.Set((int)WixBundleContainerTupleFields.Size, value); 82 set => this.Set((int)WixBundleContainerTupleFields.Size, value);
83 } 83 }
84 84
@@ -88,9 +88,9 @@ namespace WixToolset.Data.Tuples
88 set => this.Set((int)WixBundleContainerTupleFields.Hash, value); 88 set => this.Set((int)WixBundleContainerTupleFields.Hash, value);
89 } 89 }
90 90
91 public int AttachedContainerIndex 91 public int? AttachedContainerIndex
92 { 92 {
93 get => (int)this.Fields[(int)WixBundleContainerTupleFields.AttachedContainerIndex]; 93 get => (int?)this.Fields[(int)WixBundleContainerTupleFields.AttachedContainerIndex];
94 set => this.Set((int)WixBundleContainerTupleFields.AttachedContainerIndex, value); 94 set => this.Set((int)WixBundleContainerTupleFields.AttachedContainerIndex, value);
95 } 95 }
96 96