aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-23 12:48:22 -0700
committerRob Mensching <rob@firegiant.com>2019-10-23 12:50:08 -0700
commit534d79c4434c4a165f4d82ddf033fa43768c3357 (patch)
treefc90f5bfbabccea568aebda65e64f1e524d7c3c2 /src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
parent83722a63311ba516889ff0af8510a7740e01a4c2 (diff)
downloadwix-534d79c4434c4a165f4d82ddf033fa43768c3357.tar.gz
wix-534d79c4434c4a165f4d82ddf033fa43768c3357.tar.bz2
wix-534d79c4434c4a165f4d82ddf033fa43768c3357.zip
Remove BootstrapperApplicationData generally in favor of Unreal
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixCustomTableTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixCustomTableTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs b/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
index cf4e60db..2ef2b88d 100644
--- a/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
@@ -22,7 +22,7 @@ namespace WixToolset.Data
22 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.Sets), IntermediateFieldType.String), 22 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.Sets), IntermediateFieldType.String),
23 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.Descriptions), IntermediateFieldType.String), 23 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.Descriptions), IntermediateFieldType.String),
24 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.Modularizations), IntermediateFieldType.String), 24 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.Modularizations), IntermediateFieldType.String),
25 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.BootstrapperApplicationData), IntermediateFieldType.Number), 25 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.Unreal), IntermediateFieldType.Number),
26 }, 26 },
27 typeof(WixCustomTableTuple)); 27 typeof(WixCustomTableTuple));
28 } 28 }
@@ -44,7 +44,7 @@ namespace WixToolset.Data.Tuples
44 Sets, 44 Sets,
45 Descriptions, 45 Descriptions,
46 Modularizations, 46 Modularizations,
47 BootstrapperApplicationData, 47 Unreal,
48 } 48 }
49 49
50 public class WixCustomTableTuple : IntermediateTuple 50 public class WixCustomTableTuple : IntermediateTuple
@@ -131,10 +131,10 @@ namespace WixToolset.Data.Tuples
131 set => this.Set((int)WixCustomTableTupleFields.Modularizations, value); 131 set => this.Set((int)WixCustomTableTupleFields.Modularizations, value);
132 } 132 }
133 133
134 public bool BootstrapperApplicationData 134 public bool Unreal
135 { 135 {
136 get => (bool)this.Fields[(int)WixCustomTableTupleFields.BootstrapperApplicationData]; 136 get => (bool)this.Fields[(int)WixCustomTableTupleFields.Unreal];
137 set => this.Set((int)WixCustomTableTupleFields.BootstrapperApplicationData, value); 137 set => this.Set((int)WixCustomTableTupleFields.Unreal, value);
138 } 138 }
139 } 139 }
140} 140}