diff options
Diffstat (limited to 'src/WixToolset.Core/LayoutContext.cs')
-rw-r--r-- | src/WixToolset.Core/LayoutContext.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/LayoutContext.cs b/src/WixToolset.Core/LayoutContext.cs index 7bbae0c0..e4c8db7c 100644 --- a/src/WixToolset.Core/LayoutContext.cs +++ b/src/WixToolset.Core/LayoutContext.cs | |||
@@ -2,20 +2,20 @@ | |||
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 WixToolset.Extensibility; | 8 | using WixToolset.Extensibility; |
8 | using WixToolset.Extensibility.Data; | 9 | using WixToolset.Extensibility.Data; |
9 | using WixToolset.Extensibility.Services; | ||
10 | 10 | ||
11 | internal class LayoutContext : ILayoutContext | 11 | internal class LayoutContext : ILayoutContext |
12 | { | 12 | { |
13 | internal LayoutContext(IWixToolsetServiceProvider serviceProvider) | 13 | internal LayoutContext(IServiceProvider serviceProvider) |
14 | { | 14 | { |
15 | this.ServiceProvider = serviceProvider; | 15 | this.ServiceProvider = serviceProvider; |
16 | } | 16 | } |
17 | 17 | ||
18 | public IWixToolsetServiceProvider ServiceProvider { get; } | 18 | public IServiceProvider ServiceProvider { get; } |
19 | 19 | ||
20 | public IEnumerable<ILayoutExtension> Extensions { get; set; } | 20 | public IEnumerable<ILayoutExtension> Extensions { get; set; } |
21 | 21 | ||