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