aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/MsiEmbeddedChainerTuple.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-11 16:02:25 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-12 12:41:13 +1000
commitf49060303504d112b1580c1c90430aab4aaf1763 (patch)
tree0aab79732de62c3dd1b34a5983ea7b60192eb627 /src/WixToolset.Data/Tuples/MsiEmbeddedChainerTuple.cs
parentbe42b2dd8104eec6384ab632d9869e09d29fe827 (diff)
downloadwix-f49060303504d112b1580c1c90430aab4aaf1763.tar.gz
wix-f49060303504d112b1580c1c90430aab4aaf1763.tar.bz2
wix-f49060303504d112b1580c1c90430aab4aaf1763.zip
Move table definitions from Core to Data.
Sync tuple and table definitions.
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiEmbeddedChainerTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/MsiEmbeddedChainerTuple.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiEmbeddedChainerTuple.cs b/src/WixToolset.Data/Tuples/MsiEmbeddedChainerTuple.cs
index 72d92c3e..d1e49834 100644
--- a/src/WixToolset.Data/Tuples/MsiEmbeddedChainerTuple.cs
+++ b/src/WixToolset.Data/Tuples/MsiEmbeddedChainerTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.MsiEmbeddedChainer, 10 TupleDefinitionType.MsiEmbeddedChainer,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(MsiEmbeddedChainerTupleFields.MsiEmbeddedChainer), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(MsiEmbeddedChainerTupleFields.Condition), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(MsiEmbeddedChainerTupleFields.Condition), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(MsiEmbeddedChainerTupleFields.CommandLine), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(MsiEmbeddedChainerTupleFields.CommandLine), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(MsiEmbeddedChainerTupleFields.Source), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(MsiEmbeddedChainerTupleFields.Source), IntermediateFieldType.String),
@@ -24,7 +23,6 @@ namespace WixToolset.Data.Tuples
24{ 23{
25 public enum MsiEmbeddedChainerTupleFields 24 public enum MsiEmbeddedChainerTupleFields
26 { 25 {
27 MsiEmbeddedChainer,
28 Condition, 26 Condition,
29 CommandLine, 27 CommandLine,
30 Source, 28 Source,
@@ -43,12 +41,6 @@ namespace WixToolset.Data.Tuples
43 41
44 public IntermediateField this[MsiEmbeddedChainerTupleFields index] => this.Fields[(int)index]; 42 public IntermediateField this[MsiEmbeddedChainerTupleFields index] => this.Fields[(int)index];
45 43
46 public string MsiEmbeddedChainer
47 {
48 get => (string)this.Fields[(int)MsiEmbeddedChainerTupleFields.MsiEmbeddedChainer];
49 set => this.Set((int)MsiEmbeddedChainerTupleFields.MsiEmbeddedChainer, value);
50 }
51
52 public string Condition 44 public string Condition
53 { 45 {
54 get => (string)this.Fields[(int)MsiEmbeddedChainerTupleFields.Condition]; 46 get => (string)this.Fields[(int)MsiEmbeddedChainerTupleFields.Condition];