aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixBundlePackageCommandLineTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixBundlePackageCommandLineTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixBundlePackageCommandLineTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundlePackageCommandLineTuple.cs b/src/WixToolset.Data/Tuples/WixBundlePackageCommandLineTuple.cs
index 0ca895c0..3c2b5652 100644
--- a/src/WixToolset.Data/Tuples/WixBundlePackageCommandLineTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixBundlePackageCommandLineTuple.cs
@@ -45,31 +45,31 @@ namespace WixToolset.Data.Tuples
45 45
46 public string WixBundlePackage_ 46 public string WixBundlePackage_
47 { 47 {
48 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.WixBundlePackage_]?.Value; 48 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.WixBundlePackage_];
49 set => this.Set((int)WixBundlePackageCommandLineTupleFields.WixBundlePackage_, value); 49 set => this.Set((int)WixBundlePackageCommandLineTupleFields.WixBundlePackage_, value);
50 } 50 }
51 51
52 public string InstallArgument 52 public string InstallArgument
53 { 53 {
54 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.InstallArgument]?.Value; 54 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.InstallArgument];
55 set => this.Set((int)WixBundlePackageCommandLineTupleFields.InstallArgument, value); 55 set => this.Set((int)WixBundlePackageCommandLineTupleFields.InstallArgument, value);
56 } 56 }
57 57
58 public string UninstallArgument 58 public string UninstallArgument
59 { 59 {
60 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.UninstallArgument]?.Value; 60 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.UninstallArgument];
61 set => this.Set((int)WixBundlePackageCommandLineTupleFields.UninstallArgument, value); 61 set => this.Set((int)WixBundlePackageCommandLineTupleFields.UninstallArgument, value);
62 } 62 }
63 63
64 public string RepairArgument 64 public string RepairArgument
65 { 65 {
66 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.RepairArgument]?.Value; 66 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.RepairArgument];
67 set => this.Set((int)WixBundlePackageCommandLineTupleFields.RepairArgument, value); 67 set => this.Set((int)WixBundlePackageCommandLineTupleFields.RepairArgument, value);
68 } 68 }
69 69
70 public string Condition 70 public string Condition
71 { 71 {
72 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.Condition]?.Value; 72 get => (string)this.Fields[(int)WixBundlePackageCommandLineTupleFields.Condition];
73 set => this.Set((int)WixBundlePackageCommandLineTupleFields.Condition, value); 73 set => this.Set((int)WixBundlePackageCommandLineTupleFields.Condition, value);
74 } 74 }
75 } 75 }