From e4d3a0d14dec69fd110394b361274de86f61afa2 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 5 Jul 2020 17:40:01 -0700 Subject: Remove unused property --- src/WixToolset.Core/CommandLine/BuildCommand.cs | 1 - src/WixToolset.Core/CommandLine/CompileCommand.cs | 1 - src/WixToolset.Core/CompileContext.cs | 2 -- 3 files changed, 4 deletions(-) (limited to 'src') 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 var context = this.ServiceProvider.GetService(); context.Extensions = this.ExtensionManager.GetServices(); - context.OutputPath = sourceFile.OutputPath; context.Platform = this.Platform; context.Source = document; 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 var compileContext = this.ServiceProvider.GetService(); compileContext.Extensions = this.ExtensionManager.GetServices(); - compileContext.OutputPath = sourceFile.OutputPath; compileContext.Platform = this.Platform; compileContext.Source = result?.Document; 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 public IEnumerable Extensions { get; set; } - public string OutputPath { get; set; } - public Platform Platform { get; set; } public XDocument Source { get; set; } -- cgit v1.2.3-55-g6feb