aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine/CompileCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/CommandLine/CompileCommand.cs')
-rw-r--r--src/WixToolset.Core/CommandLine/CompileCommand.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/CommandLine/CompileCommand.cs b/src/WixToolset.Core/CommandLine/CompileCommand.cs
index 0a354a8f..67756947 100644
--- a/src/WixToolset.Core/CommandLine/CompileCommand.cs
+++ b/src/WixToolset.Core/CommandLine/CompileCommand.cs
@@ -12,14 +12,14 @@ namespace WixToolset.Core.CommandLine
12 12
13 internal class CompileCommand : ICommandLineCommand 13 internal class CompileCommand : ICommandLineCommand
14 { 14 {
15 public CompileCommand(IServiceProvider serviceProvider) 15 public CompileCommand(IWixToolsetServiceProvider serviceProvider)
16 { 16 {
17 this.ServiceProvider = serviceProvider; 17 this.ServiceProvider = serviceProvider;
18 this.Messaging = serviceProvider.GetService<IMessaging>(); 18 this.Messaging = serviceProvider.GetService<IMessaging>();
19 this.ExtensionManager = serviceProvider.GetService<IExtensionManager>(); 19 this.ExtensionManager = serviceProvider.GetService<IExtensionManager>();
20 } 20 }
21 21
22 public CompileCommand(IServiceProvider serviceProvider, IEnumerable<SourceFile> sources, IDictionary<string, string> preprocessorVariables, Platform platform) 22 public CompileCommand(IWixToolsetServiceProvider serviceProvider, IEnumerable<SourceFile> sources, IDictionary<string, string> preprocessorVariables, Platform platform)
23 { 23 {
24 this.ServiceProvider = serviceProvider; 24 this.ServiceProvider = serviceProvider;
25 this.Messaging = serviceProvider.GetService<IMessaging>(); 25 this.Messaging = serviceProvider.GetService<IMessaging>();
@@ -29,7 +29,7 @@ namespace WixToolset.Core.CommandLine
29 this.Platform = platform; 29 this.Platform = platform;
30 } 30 }
31 31
32 private IServiceProvider ServiceProvider { get; } 32 private IWixToolsetServiceProvider ServiceProvider { get; }
33 33
34 public IMessaging Messaging { get; } 34 public IMessaging Messaging { get; }
35 35