diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Extensibility/Data/ILinkContext.cs (renamed from src/WixToolset.Extensibility/ILinkContext.cs) | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/WixToolset.Extensibility/ILinkContext.cs b/src/WixToolset.Extensibility/Data/ILinkContext.cs index 65eeb6f1..8c1d6f22 100644 --- a/src/WixToolset.Extensibility/ILinkContext.cs +++ b/src/WixToolset.Extensibility/Data/ILinkContext.cs | |||
@@ -1,18 +1,15 @@ | |||
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 | ||
3 | namespace WixToolset.Extensibility | 3 | namespace WixToolset.Extensibility.Data |
4 | { | 4 | { |
5 | using System; | 5 | using System; |
6 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
7 | using WixToolset.Data; | 7 | using WixToolset.Data; |
8 | using WixToolset.Extensibility.Services; | ||
9 | 8 | ||
10 | public interface ILinkContext | 9 | public interface ILinkContext |
11 | { | 10 | { |
12 | IServiceProvider ServiceProvider { get; } | 11 | IServiceProvider ServiceProvider { get; } |
13 | 12 | ||
14 | IMessaging Messaging { get; set; } | ||
15 | |||
16 | IEnumerable<ILinkerExtension> Extensions { get; set; } | 13 | IEnumerable<ILinkerExtension> Extensions { get; set; } |
17 | 14 | ||
18 | IEnumerable<IExtensionData> ExtensionData { get; set; } | 15 | IEnumerable<IExtensionData> ExtensionData { get; set; } |