diff options
author | Rob Mensching <rob@firegiant.com> | 2019-05-22 00:58:13 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-05-23 16:02:37 -0700 |
commit | d0462be8000f18aa7dc0791d02142f000bb19fbf (patch) | |
tree | 072aabc2bd9b8f171e17654473f85c44a8a42a66 /src/WixToolset.Core/Compiler_EmbeddedUI.cs | |
parent | 1ed894bc0f39397ec7f7f6344370fc2123420c43 (diff) | |
download | wix-d0462be8000f18aa7dc0791d02142f000bb19fbf.tar.gz wix-d0462be8000f18aa7dc0791d02142f000bb19fbf.tar.bz2 wix-d0462be8000f18aa7dc0791d02142f000bb19fbf.zip |
Integrate latest changes to tuple definitions
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 | ||