aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/UnbindContext.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-14 11:20:54 -0700
committerRob Mensching <rob@firegiant.com>2021-03-14 11:32:08 -0700
commite8ebab2ce3991c3abb9942ce48a026a2169df01e (patch)
tree7a43209081067ee5b8379f2b1ca9bdbc4f7ee51f /src/WixToolset.Core/UnbindContext.cs
parentdad79129d26cfb12f0d8894d9189334fa982b823 (diff)
downloadwix-e8ebab2ce3991c3abb9942ce48a026a2169df01e.tar.gz
wix-e8ebab2ce3991c3abb9942ce48a026a2169df01e.tar.bz2
wix-e8ebab2ce3991c3abb9942ce48a026a2169df01e.zip
Remove use of removed IWixToolsetServiceProvider
Diffstat (limited to 'src/WixToolset.Core/UnbindContext.cs')
-rw-r--r--src/WixToolset.Core/UnbindContext.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/UnbindContext.cs b/src/WixToolset.Core/UnbindContext.cs
index acfb8f1e..c3817a08 100644
--- a/src/WixToolset.Core/UnbindContext.cs
+++ b/src/WixToolset.Core/UnbindContext.cs
@@ -2,17 +2,17 @@
2 2
3namespace WixToolset.Core 3namespace WixToolset.Core
4{ 4{
5 using System;
5 using WixToolset.Extensibility.Data; 6 using WixToolset.Extensibility.Data;
6 using WixToolset.Extensibility.Services;
7 7
8 internal class UnbindContext : IUnbindContext 8 internal class UnbindContext : IUnbindContext
9 { 9 {
10 internal UnbindContext(IWixToolsetServiceProvider serviceProvider) 10 internal UnbindContext(IServiceProvider serviceProvider)
11 { 11 {
12 this.ServiceProvider = serviceProvider; 12 this.ServiceProvider = serviceProvider;
13 } 13 }
14 14
15 public IWixToolsetServiceProvider ServiceProvider { get; } 15 public IServiceProvider ServiceProvider { get; }
16 16
17 public string ExportBasePath { get; set; } 17 public string ExportBasePath { get; set; }
18 18