aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/LinkContext.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Core/LinkContext.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/WixToolset.Core/LinkContext.cs b/src/WixToolset.Core/LinkContext.cs
index f45a3411..64dd2320 100644
--- a/src/WixToolset.Core/LinkContext.cs
+++ b/src/WixToolset.Core/LinkContext.cs
@@ -1,4 +1,4 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3namespace WixToolset.Core 3namespace WixToolset.Core
4{ 4{
@@ -7,15 +7,16 @@ namespace WixToolset.Core
7 using WixToolset.Data; 7 using WixToolset.Data;
8 using WixToolset.Extensibility; 8 using WixToolset.Extensibility;
9 using WixToolset.Extensibility.Data; 9 using WixToolset.Extensibility.Data;
10 using WixToolset.Extensibility.Services;
10 11
11 internal class LinkContext : ILinkContext 12 internal class LinkContext : ILinkContext
12 { 13 {
13 internal LinkContext(IServiceProvider serviceProvider) 14 internal LinkContext(IWixToolsetServiceProvider serviceProvider)
14 { 15 {
15 this.ServiceProvider = serviceProvider; 16 this.ServiceProvider = serviceProvider;
16 } 17 }
17 18
18 public IServiceProvider ServiceProvider { get; } 19 public IWixToolsetServiceProvider ServiceProvider { get; }
19 20
20 public IEnumerable<ILinkerExtension> Extensions { get; set; } 21 public IEnumerable<ILinkerExtension> Extensions { get; set; }
21 22