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