diff options
Diffstat (limited to 'src/wixext/NetFxCompiler.cs')
-rw-r--r-- | src/wixext/NetFxCompiler.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wixext/NetFxCompiler.cs b/src/wixext/NetFxCompiler.cs index e12cca6b..14efe95d 100644 --- a/src/wixext/NetFxCompiler.cs +++ b/src/wixext/NetFxCompiler.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.Netfx | |||
8 | using WixToolset.Data; | 8 | using WixToolset.Data; |
9 | using WixToolset.Extensibility; | 9 | using WixToolset.Extensibility; |
10 | using WixToolset.Extensibility.Data; | 10 | using WixToolset.Extensibility.Data; |
11 | using WixToolset.Netfx.Tuples; | 11 | using WixToolset.Netfx.Symbols; |
12 | 12 | ||
13 | /// <summary> | 13 | /// <summary> |
14 | /// The compiler for the WiX Toolset .NET Framework Extension. | 14 | /// The compiler for the WiX Toolset .NET Framework Extension. |
@@ -75,7 +75,7 @@ namespace WixToolset.Netfx | |||
75 | // See if a formatted value is specified. | 75 | // See if a formatted value is specified. |
76 | if (-1 == appBaseDirectory.IndexOf("[", StringComparison.Ordinal)) | 76 | if (-1 == appBaseDirectory.IndexOf("[", StringComparison.Ordinal)) |
77 | { | 77 | { |
78 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, TupleDefinitions.Directory, appBaseDirectory); | 78 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.Directory, appBaseDirectory); |
79 | } | 79 | } |
80 | break; | 80 | break; |
81 | case "AssemblyApplication": | 81 | case "AssemblyApplication": |
@@ -84,7 +84,7 @@ namespace WixToolset.Netfx | |||
84 | // See if a formatted value is specified. | 84 | // See if a formatted value is specified. |
85 | if (-1 == assemblyApplication.IndexOf("[", StringComparison.Ordinal)) | 85 | if (-1 == assemblyApplication.IndexOf("[", StringComparison.Ordinal)) |
86 | { | 86 | { |
87 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, TupleDefinitions.File, assemblyApplication); | 87 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.File, assemblyApplication); |
88 | } | 88 | } |
89 | break; | 89 | break; |
90 | case "Debug": | 90 | case "Debug": |
@@ -149,7 +149,7 @@ namespace WixToolset.Netfx | |||
149 | 149 | ||
150 | if (!this.Messaging.EncounteredError) | 150 | if (!this.Messaging.EncounteredError) |
151 | { | 151 | { |
152 | section.AddTuple(new NetFxNativeImageTuple(sourceLineNumbers, id) | 152 | section.AddSymbol(new NetFxNativeImageSymbol(sourceLineNumbers, id) |
153 | { | 153 | { |
154 | FileRef = fileId, | 154 | FileRef = fileId, |
155 | Priority = priority, | 155 | Priority = priority, |