aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/IUnbinder.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/IUnbinder.cs')
-rw-r--r--src/WixToolset.Core/IUnbinder.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/WixToolset.Core/IUnbinder.cs b/src/WixToolset.Core/IUnbinder.cs
new file mode 100644
index 00000000..2b4daaa5
--- /dev/null
+++ b/src/WixToolset.Core/IUnbinder.cs
@@ -0,0 +1,12 @@
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.Data;
6
7#pragma warning disable 1591 // TODO: add documentation, move into Extensibility
8 public interface IUnbinder
9 {
10 Intermediate Unbind(string file, OutputType outputType, string exportBasePath);
11 }
12}