aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples')
-rw-r--r--src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs2
-rw-r--r--src/WixToolset.Data/Tuples/WixBundleTuple.cs6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs b/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
index 42f15660..f4ec17bf 100644
--- a/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
+++ b/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
@@ -51,7 +51,7 @@ namespace WixToolset.Data.Tuples
51 51
52 public RegistryRootType Root 52 public RegistryRootType Root
53 { 53 {
54 get => (RegistryRootType)this.Fields[(int)RemoveRegistryTupleFields.Root]?.AsNumber(); 54 get => (RegistryRootType)this.Fields[(int)RemoveRegistryTupleFields.Root].AsNumber();
55 set => this.Set((int)RemoveRegistryTupleFields.Root, (int)value); 55 set => this.Set((int)RemoveRegistryTupleFields.Root, (int)value);
56 } 56 }
57 57
diff --git a/src/WixToolset.Data/Tuples/WixBundleTuple.cs b/src/WixToolset.Data/Tuples/WixBundleTuple.cs
index f7cd4f23..8f6f760a 100644
--- a/src/WixToolset.Data/Tuples/WixBundleTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixBundleTuple.cs
@@ -32,7 +32,7 @@ namespace WixToolset.Data
32 new IntermediateFieldDefinition(nameof(WixBundleTupleFields.UpgradeCode), IntermediateFieldType.String), 32 new IntermediateFieldDefinition(nameof(WixBundleTupleFields.UpgradeCode), IntermediateFieldType.String),
33 new IntermediateFieldDefinition(nameof(WixBundleTupleFields.BundleId), IntermediateFieldType.String), 33 new IntermediateFieldDefinition(nameof(WixBundleTupleFields.BundleId), IntermediateFieldType.String),
34 new IntermediateFieldDefinition(nameof(WixBundleTupleFields.ProviderKey), IntermediateFieldType.String), 34 new IntermediateFieldDefinition(nameof(WixBundleTupleFields.ProviderKey), IntermediateFieldType.String),
35 new IntermediateFieldDefinition(nameof(WixBundleTupleFields.PerMachine), IntermediateFieldType.Number), 35 new IntermediateFieldDefinition(nameof(WixBundleTupleFields.PerMachine), IntermediateFieldType.Bool),
36 }, 36 },
37 typeof(WixBundleTuple)); 37 typeof(WixBundleTuple));
38 } 38 }
@@ -211,9 +211,9 @@ namespace WixToolset.Data.Tuples
211 set => this.Set((int)WixBundleTupleFields.ProviderKey, value); 211 set => this.Set((int)WixBundleTupleFields.ProviderKey, value);
212 } 212 }
213 213
214 public int PerMachine 214 public bool PerMachine
215 { 215 {
216 get => (int)this.Fields[(int)WixBundleTupleFields.PerMachine]; 216 get => (bool)this.Fields[(int)WixBundleTupleFields.PerMachine];
217 set => this.Set((int)WixBundleTupleFields.PerMachine, value); 217 set => this.Set((int)WixBundleTupleFields.PerMachine, value);
218 } 218 }
219 } 219 }