diff options
Diffstat (limited to 'src/wixext/DifxAppCompiler.cs')
-rw-r--r-- | src/wixext/DifxAppCompiler.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/DifxAppCompiler.cs b/src/wixext/DifxAppCompiler.cs index 4d0b8ec9..e3687a49 100644 --- a/src/wixext/DifxAppCompiler.cs +++ b/src/wixext/DifxAppCompiler.cs | |||
@@ -6,7 +6,7 @@ namespace WixToolset.DifxApp | |||
6 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
7 | using System.Xml.Linq; | 7 | using System.Xml.Linq; |
8 | using WixToolset.Data; | 8 | using WixToolset.Data; |
9 | using WixToolset.DifxApp.Tuples; | 9 | using WixToolset.DifxApp.Symbols; |
10 | using WixToolset.Extensibility; | 10 | using WixToolset.Extensibility; |
11 | 11 | ||
12 | /// <summary> | 12 | /// <summary> |
@@ -138,10 +138,10 @@ namespace WixToolset.DifxApp | |||
138 | switch (this.Context.Platform) | 138 | switch (this.Context.Platform) |
139 | { | 139 | { |
140 | case Platform.X86: | 140 | case Platform.X86: |
141 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, TupleDefinitions.CustomAction, "MsiProcessDrivers"); | 141 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, "MsiProcessDrivers"); |
142 | break; | 142 | break; |
143 | case Platform.X64: | 143 | case Platform.X64: |
144 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, TupleDefinitions.CustomAction, "MsiProcessDrivers_x64"); | 144 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, "MsiProcessDrivers_x64"); |
145 | break; | 145 | break; |
146 | case Platform.IA64: | 146 | case Platform.IA64: |
147 | case Platform.ARM: | 147 | case Platform.ARM: |
@@ -149,7 +149,7 @@ namespace WixToolset.DifxApp | |||
149 | break; | 149 | break; |
150 | } | 150 | } |
151 | 151 | ||
152 | var tuple = section.AddTuple(new MsiDriverPackagesTuple(sourceLineNumbers) | 152 | var symbol = section.AddSymbol(new MsiDriverPackagesSymbol(sourceLineNumbers) |
153 | { | 153 | { |
154 | ComponentRef = componentId, | 154 | ComponentRef = componentId, |
155 | Flags = attributes, | 155 | Flags = attributes, |
@@ -157,7 +157,7 @@ namespace WixToolset.DifxApp | |||
157 | 157 | ||
158 | if (CompilerConstants.IntegerNotSet != sequence) | 158 | if (CompilerConstants.IntegerNotSet != sequence) |
159 | { | 159 | { |
160 | tuple.Sequence = sequence; | 160 | symbol.Sequence = sequence; |
161 | } | 161 | } |
162 | } | 162 | } |
163 | } | 163 | } |