aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixRelatedBundleTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/WixRelatedBundleTuple.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/Tuples/WixRelatedBundleTuple.cs b/src/WixToolset.Data/Tuples/WixRelatedBundleTuple.cs
index 5151aa2b..a7a2cf92 100644
--- a/src/WixToolset.Data/Tuples/WixRelatedBundleTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixRelatedBundleTuple.cs
@@ -47,7 +47,7 @@ namespace WixToolset.Data.Tuples
47 47
48 public string BundleId 48 public string BundleId
49 { 49 {
50 get => (string)this.Fields[(int)WixRelatedBundleTupleFields.BundleId]?.Value; 50 get => (string)this.Fields[(int)WixRelatedBundleTupleFields.BundleId];
51 set => this.Set((int)WixRelatedBundleTupleFields.BundleId, value); 51 set => this.Set((int)WixRelatedBundleTupleFields.BundleId, value);
52 } 52 }
53 53