diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Core/CommandLine/BuildCommand.cs | 1 | ||||
-rw-r--r-- | src/WixToolset.Core/CommandLine/CompileCommand.cs | 1 | ||||
-rw-r--r-- | src/WixToolset.Core/CompileContext.cs | 2 |
3 files changed, 0 insertions, 4 deletions
diff --git a/src/WixToolset.Core/CommandLine/BuildCommand.cs b/src/WixToolset.Core/CommandLine/BuildCommand.cs index 04a55264..4064a23c 100644 --- a/src/WixToolset.Core/CommandLine/BuildCommand.cs +++ b/src/WixToolset.Core/CommandLine/BuildCommand.cs | |||
@@ -227,7 +227,6 @@ namespace WixToolset.Core.CommandLine | |||
227 | 227 | ||
228 | var context = this.ServiceProvider.GetService<ICompileContext>(); | 228 | var context = this.ServiceProvider.GetService<ICompileContext>(); |
229 | context.Extensions = this.ExtensionManager.GetServices<ICompilerExtension>(); | 229 | context.Extensions = this.ExtensionManager.GetServices<ICompilerExtension>(); |
230 | context.OutputPath = sourceFile.OutputPath; | ||
231 | context.Platform = this.Platform; | 230 | context.Platform = this.Platform; |
232 | context.Source = document; | 231 | context.Source = document; |
233 | context.CancellationToken = cancellationToken; | 232 | context.CancellationToken = cancellationToken; |
diff --git a/src/WixToolset.Core/CommandLine/CompileCommand.cs b/src/WixToolset.Core/CommandLine/CompileCommand.cs index d16c7a46..f6f9c623 100644 --- a/src/WixToolset.Core/CommandLine/CompileCommand.cs +++ b/src/WixToolset.Core/CommandLine/CompileCommand.cs | |||
@@ -79,7 +79,6 @@ namespace WixToolset.Core.CommandLine | |||
79 | 79 | ||
80 | var compileContext = this.ServiceProvider.GetService<ICompileContext>(); | 80 | var compileContext = this.ServiceProvider.GetService<ICompileContext>(); |
81 | compileContext.Extensions = this.ExtensionManager.GetServices<ICompilerExtension>(); | 81 | compileContext.Extensions = this.ExtensionManager.GetServices<ICompilerExtension>(); |
82 | compileContext.OutputPath = sourceFile.OutputPath; | ||
83 | compileContext.Platform = this.Platform; | 82 | compileContext.Platform = this.Platform; |
84 | compileContext.Source = result?.Document; | 83 | compileContext.Source = result?.Document; |
85 | 84 | ||
diff --git a/src/WixToolset.Core/CompileContext.cs b/src/WixToolset.Core/CompileContext.cs index 7dc862b9..44da6c8a 100644 --- a/src/WixToolset.Core/CompileContext.cs +++ b/src/WixToolset.Core/CompileContext.cs | |||
@@ -23,8 +23,6 @@ namespace WixToolset.Core | |||
23 | 23 | ||
24 | public IEnumerable<ICompilerExtension> Extensions { get; set; } | 24 | public IEnumerable<ICompilerExtension> Extensions { get; set; } |
25 | 25 | ||
26 | public string OutputPath { get; set; } | ||
27 | |||
28 | public Platform Platform { get; set; } | 26 | public Platform Platform { get; set; } |
29 | 27 | ||
30 | public XDocument Source { get; set; } | 28 | public XDocument Source { get; set; } |