aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine/CommandLine.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-10-04 14:52:39 -0700
committerRob Mensching <rob@firegiant.com>2017-10-04 14:52:39 -0700
commit4d5289fa6254ca80a23807c41ca8502f8f38f048 (patch)
treed2a0e0b76fd5ece1d4c54b19da87697525dee504 /src/WixToolset.Core/CommandLine/CommandLine.cs
parentafd296a66f97ef94f26a375c3a71ed79ef95127d (diff)
downloadwix-4d5289fa6254ca80a23807c41ca8502f8f38f048.tar.gz
wix-4d5289fa6254ca80a23807c41ca8502f8f38f048.tar.bz2
wix-4d5289fa6254ca80a23807c41ca8502f8f38f048.zip
Pass extensions' data into the linker
Diffstat (limited to 'src/WixToolset.Core/CommandLine/CommandLine.cs')
-rw-r--r--src/WixToolset.Core/CommandLine/CommandLine.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CommandLine/CommandLine.cs b/src/WixToolset.Core/CommandLine/CommandLine.cs
index cac54091..c95a2db4 100644
--- a/src/WixToolset.Core/CommandLine/CommandLine.cs
+++ b/src/WixToolset.Core/CommandLine/CommandLine.cs
@@ -195,7 +195,7 @@ namespace WixToolset.Core
195 var bindPathList = GatherBindPaths(bindPaths); 195 var bindPathList = GatherBindPaths(bindPaths);
196 var extensions = cli.ExtensionManager; 196 var extensions = cli.ExtensionManager;
197 var type = CalculateOutputType(outputType, outputFile); 197 var type = CalculateOutputType(outputType, outputFile);
198 return new BuildCommand(sourceFiles, variables, locFiles, libraryFiles, outputFile, type, cultures, bindFiles, bindPathList, intermediateFolder, contentsFile, outputsFile, builtOutputsFile, wixProjectFile); 198 return new BuildCommand(extensions, sourceFiles, variables, locFiles, libraryFiles, outputFile, type, cultures, bindFiles, bindPathList, intermediateFolder, contentsFile, outputsFile, builtOutputsFile, wixProjectFile);
199 } 199 }
200 200
201 case Commands.Compile: 201 case Commands.Compile: