diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-03-14 11:20:54 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-14 11:32:08 -0700 |
| commit | e8ebab2ce3991c3abb9942ce48a026a2169df01e (patch) | |
| tree | 7a43209081067ee5b8379f2b1ca9bdbc4f7ee51f /src/WixToolset.Core/LibraryContext.cs | |
| parent | dad79129d26cfb12f0d8894d9189334fa982b823 (diff) | |
| download | wix-e8ebab2ce3991c3abb9942ce48a026a2169df01e.tar.gz wix-e8ebab2ce3991c3abb9942ce48a026a2169df01e.tar.bz2 wix-e8ebab2ce3991c3abb9942ce48a026a2169df01e.zip | |
Remove use of removed IWixToolsetServiceProvider
Diffstat (limited to 'src/WixToolset.Core/LibraryContext.cs')
| -rw-r--r-- | src/WixToolset.Core/LibraryContext.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/WixToolset.Core/LibraryContext.cs b/src/WixToolset.Core/LibraryContext.cs index 9fd76cf5..62d4e70c 100644 --- a/src/WixToolset.Core/LibraryContext.cs +++ b/src/WixToolset.Core/LibraryContext.cs | |||
| @@ -2,6 +2,7 @@ | |||
| 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; |
| @@ -11,12 +12,12 @@ namespace WixToolset.Core | |||
| 11 | 12 | ||
| 12 | internal class LibraryContext : ILibraryContext | 13 | internal class LibraryContext : ILibraryContext |
| 13 | { | 14 | { |
| 14 | internal LibraryContext(IWixToolsetServiceProvider serviceProvider) | 15 | internal LibraryContext(IServiceProvider serviceProvider) |
| 15 | { | 16 | { |
| 16 | this.ServiceProvider = serviceProvider; | 17 | this.ServiceProvider = serviceProvider; |
| 17 | } | 18 | } |
| 18 | 19 | ||
| 19 | public IWixToolsetServiceProvider ServiceProvider { get; } | 20 | public IServiceProvider ServiceProvider { get; } |
| 20 | 21 | ||
| 21 | public IMessaging Messaging { get; set; } | 22 | public IMessaging Messaging { get; set; } |
| 22 | 23 | ||
