aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CompileContext.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Core/CompileContext.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/WixToolset.Core/CompileContext.cs b/src/WixToolset.Core/CompileContext.cs
index c7a0905e..f92a131d 100644
--- a/src/WixToolset.Core/CompileContext.cs
+++ b/src/WixToolset.Core/CompileContext.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{
@@ -8,15 +8,16 @@ namespace WixToolset.Core
8 using WixToolset.Data; 8 using WixToolset.Data;
9 using WixToolset.Extensibility; 9 using WixToolset.Extensibility;
10 using WixToolset.Extensibility.Data; 10 using WixToolset.Extensibility.Data;
11 using WixToolset.Extensibility.Services;
11 12
12 internal class CompileContext : ICompileContext 13 internal class CompileContext : ICompileContext
13 { 14 {
14 internal CompileContext(IServiceProvider serviceProvider) 15 internal CompileContext(IWixToolsetServiceProvider serviceProvider)
15 { 16 {
16 this.ServiceProvider = serviceProvider; 17 this.ServiceProvider = serviceProvider;
17 } 18 }
18 19
19 public IServiceProvider ServiceProvider { get; } 20 public IWixToolsetServiceProvider ServiceProvider { get; }
20 21
21 public string CompilationId { get; set; } 22 public string CompilationId { get; set; }
22 23