aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs b/src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs
index 2398b1da..25686027 100644
--- a/src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixBundleUpdateTuple.cs
@@ -39,13 +39,13 @@ namespace WixToolset.Data.Tuples
39 39
40 public string Location 40 public string Location
41 { 41 {
42 get => (string)this.Fields[(int)WixBundleUpdateTupleFields.Location]?.Value; 42 get => (string)this.Fields[(int)WixBundleUpdateTupleFields.Location];
43 set => this.Set((int)WixBundleUpdateTupleFields.Location, value); 43 set => this.Set((int)WixBundleUpdateTupleFields.Location, value);
44 } 44 }
45 45
46 public int Attributes 46 public int Attributes
47 { 47 {
48 get => (int)this.Fields[(int)WixBundleUpdateTupleFields.Attributes]?.Value; 48 get => (int)this.Fields[(int)WixBundleUpdateTupleFields.Attributes];
49 set => this.Set((int)WixBundleUpdateTupleFields.Attributes, value); 49 set => this.Set((int)WixBundleUpdateTupleFields.Attributes, value);
50 } 50 }
51 } 51 }