diff options
Diffstat (limited to 'src/wixext/NetFxCompiler.cs')
-rw-r--r-- | src/wixext/NetFxCompiler.cs | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/wixext/NetFxCompiler.cs b/src/wixext/NetFxCompiler.cs index 55db4297..8a5d02f5 100644 --- a/src/wixext/NetFxCompiler.cs +++ b/src/wixext/NetFxCompiler.cs | |||
@@ -7,6 +7,7 @@ namespace WixToolset.Netfx | |||
7 | using System.Xml.Linq; | 7 | using System.Xml.Linq; |
8 | using WixToolset.Data; | 8 | using WixToolset.Data; |
9 | using WixToolset.Extensibility; | 9 | using WixToolset.Extensibility; |
10 | using WixToolset.Netfx.Tuples; | ||
10 | 11 | ||
11 | /// <summary> | 12 | /// <summary> |
12 | /// The compiler for the WiX Toolset .NET Framework Extension. | 13 | /// The compiler for the WiX Toolset .NET Framework Extension. |
@@ -147,12 +148,14 @@ namespace WixToolset.Netfx | |||
147 | 148 | ||
148 | if (!this.Messaging.EncounteredError) | 149 | if (!this.Messaging.EncounteredError) |
149 | { | 150 | { |
150 | var row = this.ParseHelper.CreateRow(section, sourceLineNumbers, "NetFxNativeImage", id); | 151 | section.Tuples.Add(new NetFxNativeImageTuple(sourceLineNumbers, id) |
151 | row.Set(1, fileId); | 152 | { |
152 | row.Set(2, priority); | 153 | FileRef=fileId, |
153 | row.Set(3, attributes); | 154 | Priority=priority, |
154 | row.Set(4, assemblyApplication); | 155 | Attributes=attributes, |
155 | row.Set(5, appBaseDirectory); | 156 | ApplicationFileRef=assemblyApplication, |
157 | ApplicationBaseDirectoryRef=appBaseDirectory, | ||
158 | }); | ||
156 | } | 159 | } |
157 | } | 160 | } |
158 | } | 161 | } |