diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IUnbindContext.cs')
-rw-r--r-- | src/WixToolset.Extensibility/IUnbindContext.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/IUnbindContext.cs b/src/WixToolset.Extensibility/IUnbindContext.cs new file mode 100644 index 00000000..82364652 --- /dev/null +++ b/src/WixToolset.Extensibility/IUnbindContext.cs | |||
@@ -0,0 +1,23 @@ | |||
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 | |||
3 | namespace WixToolset.Extensibility | ||
4 | { | ||
5 | using WixToolset.Data; | ||
6 | |||
7 | public interface IUnbindContext | ||
8 | { | ||
9 | string ExportBasePath { get; set; } | ||
10 | |||
11 | string InputFilePath { get; set; } | ||
12 | |||
13 | string IntermediateFolder { get; set; } | ||
14 | |||
15 | bool IsAdminImage { get; set; } | ||
16 | |||
17 | Messaging Messaging { get; } | ||
18 | |||
19 | bool SuppressDemodularization { get; set; } | ||
20 | |||
21 | bool SuppressExtractCabinets { get; set; } | ||
22 | } | ||
23 | } \ No newline at end of file | ||