diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IUnbindContext.cs')
-rw-r--r-- | src/WixToolset.Extensibility/IUnbindContext.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/WixToolset.Extensibility/IUnbindContext.cs b/src/WixToolset.Extensibility/IUnbindContext.cs index 82364652..beaa5491 100644 --- a/src/WixToolset.Extensibility/IUnbindContext.cs +++ b/src/WixToolset.Extensibility/IUnbindContext.cs | |||
@@ -2,10 +2,15 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Extensibility | 3 | namespace WixToolset.Extensibility |
4 | { | 4 | { |
5 | using WixToolset.Data; | 5 | using System; |
6 | using WixToolset.Extensibility.Services; | ||
6 | 7 | ||
7 | public interface IUnbindContext | 8 | public interface IUnbindContext |
8 | { | 9 | { |
10 | IServiceProvider ServiceProvider { get; } | ||
11 | |||
12 | IMessaging Messaging { get; set; } | ||
13 | |||
9 | string ExportBasePath { get; set; } | 14 | string ExportBasePath { get; set; } |
10 | 15 | ||
11 | string InputFilePath { get; set; } | 16 | string InputFilePath { get; set; } |
@@ -14,8 +19,6 @@ namespace WixToolset.Extensibility | |||
14 | 19 | ||
15 | bool IsAdminImage { get; set; } | 20 | bool IsAdminImage { get; set; } |
16 | 21 | ||
17 | Messaging Messaging { get; } | ||
18 | |||
19 | bool SuppressDemodularization { get; set; } | 22 | bool SuppressDemodularization { get; set; } |
20 | 23 | ||
21 | bool SuppressExtractCabinets { get; set; } | 24 | bool SuppressExtractCabinets { get; set; } |