aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-06-19 13:45:04 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-06-19 14:02:13 +1000
commit4b3a3e60eb5f621723be7b894a7a71ae331dcf46 (patch)
tree4df7e0364a96661a743683da220d5c2d0a79af48 /src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
parent19be63b9a7c50e17386cd476c1ffd7c40ba9eaf5 (diff)
downloadwix-4b3a3e60eb5f621723be7b894a7a71ae331dcf46.tar.gz
wix-4b3a3e60eb5f621723be7b894a7a71ae331dcf46.tar.bz2
wix-4b3a3e60eb5f621723be7b894a7a71ae331dcf46.zip
Add BundleCustomData tuples. Remove Unreal from CustomTable.
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixCustomTableTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixCustomTableTuple.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs b/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
index b0d12a63..4d668842 100644
--- a/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixCustomTableTuple.cs
@@ -11,7 +11,6 @@ namespace WixToolset.Data
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.ColumnNames), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.ColumnNames), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixCustomTableTupleFields.Unreal), IntermediateFieldType.Bool),
15 }, 14 },
16 typeof(WixCustomTableTuple)); 15 typeof(WixCustomTableTuple));
17 } 16 }
@@ -22,7 +21,6 @@ namespace WixToolset.Data.Tuples
22 public enum WixCustomTableTupleFields 21 public enum WixCustomTableTupleFields
23 { 22 {
24 ColumnNames, 23 ColumnNames,
25 Unreal,
26 } 24 }
27 25
28 public class WixCustomTableTuple : IntermediateTuple 26 public class WixCustomTableTuple : IntermediateTuple
@@ -45,12 +43,6 @@ namespace WixToolset.Data.Tuples
45 set => this.Set((int)WixCustomTableTupleFields.ColumnNames, value); 43 set => this.Set((int)WixCustomTableTupleFields.ColumnNames, value);
46 } 44 }
47 45
48 public bool Unreal
49 {
50 get => (bool)this.Fields[(int)WixCustomTableTupleFields.Unreal];
51 set => this.Set((int)WixCustomTableTupleFields.Unreal, value);
52 }
53
54 public string[] ColumnNamesSeparated => this.ColumnNames.Split(ColumnNamesSeparator); 46 public string[] ColumnNamesSeparated => this.ColumnNames.Split(ColumnNamesSeparator);
55 } 47 }
56} 48}