diff options
Diffstat (limited to 'src/WixToolset.Core/CompileContext.cs')
-rw-r--r-- | src/WixToolset.Core/CompileContext.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/CompileContext.cs b/src/WixToolset.Core/CompileContext.cs index e781b692..2aeb3998 100644 --- a/src/WixToolset.Core/CompileContext.cs +++ b/src/WixToolset.Core/CompileContext.cs | |||
@@ -2,22 +2,22 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Core | 3 | namespace WixToolset.Core |
4 | { | 4 | { |
5 | using System; | ||
5 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
6 | using System.Threading; | 7 | using System.Threading; |
7 | using System.Xml.Linq; | 8 | using System.Xml.Linq; |
8 | using WixToolset.Data; | 9 | using WixToolset.Data; |
9 | using WixToolset.Extensibility; | 10 | using WixToolset.Extensibility; |
10 | using WixToolset.Extensibility.Data; | 11 | using WixToolset.Extensibility.Data; |
11 | using WixToolset.Extensibility.Services; | ||
12 | 12 | ||
13 | internal class CompileContext : ICompileContext | 13 | internal class CompileContext : ICompileContext |
14 | { | 14 | { |
15 | internal CompileContext(IWixToolsetServiceProvider serviceProvider) | 15 | internal CompileContext(IServiceProvider serviceProvider) |
16 | { | 16 | { |
17 | this.ServiceProvider = serviceProvider; | 17 | this.ServiceProvider = serviceProvider; |
18 | } | 18 | } |
19 | 19 | ||
20 | public IWixToolsetServiceProvider ServiceProvider { get; } | 20 | public IServiceProvider ServiceProvider { get; } |
21 | 21 | ||
22 | public string CompilationId { get; set; } | 22 | public string CompilationId { get; set; } |
23 | 23 | ||