Remove unused property
Rob Mensching committed
Jul 5, 2020 at 17:40 UTC
e4d3a0d14dec69fd110394b361274de86f61afa2
3 files changed
-4
src/WixToolset.Core/CommandLine/BuildCommand.cs
-1
@@ -227,7 +227,6 @@ namespace WixToolset.Core.CommandLine
227
228
var context = this.ServiceProvider.GetService<ICompileContext>();
229
context.Extensions = this.ExtensionManager.GetServices<ICompilerExtension>();
230
- context.OutputPath = sourceFile.OutputPath;
230
context.Platform = this.Platform;
231
context.Source = document;
232
context.CancellationToken = cancellationToken;
src/WixToolset.Core/CommandLine/CompileCommand.cs
-1
@@ -79,7 +79,6 @@ namespace WixToolset.Core.CommandLine
79
80
var compileContext = this.ServiceProvider.GetService<ICompileContext>();
81
compileContext.Extensions = this.ExtensionManager.GetServices<ICompilerExtension>();
82
- compileContext.OutputPath = sourceFile.OutputPath;
82
compileContext.Platform = this.Platform;
83
compileContext.Source = result?.Document;
84
src/WixToolset.Core/CompileContext.cs
-2
@@ -23,8 +23,6 @@ namespace WixToolset.Core
23
24
public IEnumerable<ICompilerExtension> Extensions { get; set; }
25
26
- public string OutputPath { get; set; }
27
-
26
public Platform Platform { get; set; }
27
28
public XDocument Source { get; set; }