diff options
author | Bob Arnson <bob@joyofsetup.com> | 2017-12-29 15:12:24 -0500 |
---|---|---|
committer | Bob Arnson <bob@joyofsetup.com> | 2017-12-29 15:12:24 -0500 |
commit | 59004832767115df136c553169e992577e5981d6 (patch) | |
tree | 09bc208c63c06820f86cee24e9fe0022f638a132 /src/WixToolset.Core/CommandLine/BuildCommand.cs | |
parent | ab4ee36c182b67a80ca3404fdc344bf948192740 (diff) | |
download | wix-59004832767115df136c553169e992577e5981d6.tar.gz wix-59004832767115df136c553169e992577e5981d6.tar.bz2 wix-59004832767115df136c553169e992577e5981d6.zip |
Pass along include search paths to those that need it.
Diffstat (limited to 'src/WixToolset.Core/CommandLine/BuildCommand.cs')
-rw-r--r-- | src/WixToolset.Core/CommandLine/BuildCommand.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CommandLine/BuildCommand.cs b/src/WixToolset.Core/CommandLine/BuildCommand.cs index 1731caaf..fb258179 100644 --- a/src/WixToolset.Core/CommandLine/BuildCommand.cs +++ b/src/WixToolset.Core/CommandLine/BuildCommand.cs | |||
@@ -13,7 +13,7 @@ namespace WixToolset.Core.CommandLine | |||
13 | 13 | ||
14 | internal class BuildCommand : ICommandLineCommand | 14 | internal class BuildCommand : ICommandLineCommand |
15 | { | 15 | { |
16 | public BuildCommand(IServiceProvider serviceProvider, IEnumerable<SourceFile> sources, IDictionary<string, string> preprocessorVariables, IEnumerable<string> locFiles, IEnumerable<string> libraryFiles, string outputPath, OutputType outputType, string cabCachePath, IEnumerable<string> cultures, bool bindFiles, IEnumerable<BindPath> bindPaths, string intermediateFolder, string contentsFile, string outputsFile, string builtOutputsFile) | 16 | public BuildCommand(IServiceProvider serviceProvider, IEnumerable<SourceFile> sources, IDictionary<string, string> preprocessorVariables, IEnumerable<string> locFiles, IEnumerable<string> libraryFiles, string outputPath, OutputType outputType, string cabCachePath, IEnumerable<string> cultures, bool bindFiles, IEnumerable<BindPath> bindPaths, IEnumerable<string> includeSearchPaths, string intermediateFolder, string contentsFile, string outputsFile, string builtOutputsFile) |
17 | { | 17 | { |
18 | this.ServiceProvider = serviceProvider; | 18 | this.ServiceProvider = serviceProvider; |
19 | this.Messaging = serviceProvider.GetService<IMessaging>(); | 19 | this.Messaging = serviceProvider.GetService<IMessaging>(); |
@@ -29,6 +29,7 @@ namespace WixToolset.Core.CommandLine | |||
29 | this.Cultures = cultures; | 29 | this.Cultures = cultures; |
30 | this.BindFiles = bindFiles; | 30 | this.BindFiles = bindFiles; |
31 | this.BindPaths = bindPaths; | 31 | this.BindPaths = bindPaths; |
32 | this.IncludeSearchPaths = includeSearchPaths; | ||
32 | 33 | ||
33 | this.IntermediateFolder = intermediateFolder ?? Path.GetTempPath(); | 34 | this.IntermediateFolder = intermediateFolder ?? Path.GetTempPath(); |
34 | this.ContentsFile = contentsFile; | 35 | this.ContentsFile = contentsFile; |