aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/UnbindContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/UnbindContext.cs')
-rw-r--r--src/WixToolset.Core/UnbindContext.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/WixToolset.Core/UnbindContext.cs b/src/WixToolset.Core/UnbindContext.cs
new file mode 100644
index 00000000..acfb8f1e
--- /dev/null
+++ b/src/WixToolset.Core/UnbindContext.cs
@@ -0,0 +1,29 @@
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.Core
4{
5 using WixToolset.Extensibility.Data;
6 using WixToolset.Extensibility.Services;
7
8 internal class UnbindContext : IUnbindContext
9 {
10 internal UnbindContext(IWixToolsetServiceProvider serviceProvider)
11 {
12 this.ServiceProvider = serviceProvider;
13 }
14
15 public IWixToolsetServiceProvider ServiceProvider { get; }
16
17 public string ExportBasePath { get; set; }
18
19 public string InputFilePath { get; set; }
20
21 public string IntermediateFolder { get; set; }
22
23 public bool IsAdminImage { get; set; }
24
25 public bool SuppressExtractCabinets { get; set; }
26
27 public bool SuppressDemodularization { get; set; }
28 }
29}