diff options
Diffstat (limited to 'src/WixToolset.Core/Compiler_EmbeddedUI.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler_EmbeddedUI.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/WixToolset.Core/Compiler_EmbeddedUI.cs b/src/WixToolset.Core/Compiler_EmbeddedUI.cs index 3245941e..e71c2f56 100644 --- a/src/WixToolset.Core/Compiler_EmbeddedUI.cs +++ b/src/WixToolset.Core/Compiler_EmbeddedUI.cs | |||
@@ -91,11 +91,13 @@ namespace WixToolset.Core | |||
91 | 91 | ||
92 | if (!this.Core.EncounteredError) | 92 | if (!this.Core.EncounteredError) |
93 | { | 93 | { |
94 | var row = this.Core.CreateRow(sourceLineNumbers, TupleDefinitionType.MsiEmbeddedChainer, id); | 94 | this.Core.AddTuple(new MsiEmbeddedChainerTuple(sourceLineNumbers, id) |
95 | row.Set(1, condition); | 95 | { |
96 | row.Set(2, commandLine); | 96 | Condition = condition, |
97 | row.Set(3, source); | 97 | CommandLine = commandLine, |
98 | row.Set(4, type); | 98 | Source = source, |
99 | Type = type | ||
100 | }); | ||
99 | } | 101 | } |
100 | } | 102 | } |
101 | 103 | ||