diff options
author | Nir Bar <nir.bar@panel-sw.co.il> | 2020-12-21 05:05:45 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-21 16:49:04 -0600 |
commit | d085e938317c80f62a3b484d20ed1a6cf89bb59d (patch) | |
tree | d993e2bf90bc754d62b9731981b3cb056e1bb7b9 /src/WixToolset.Core/IUnbinder.cs | |
parent | 85deb61f666f6817c1a137ace4d666c8ae2940fb (diff) | |
download | wix-d085e938317c80f62a3b484d20ed1a6cf89bb59d.tar.gz wix-d085e938317c80f62a3b484d20ed1a6cf89bb59d.tar.bz2 wix-d085e938317c80f62a3b484d20ed1a6cf89bb59d.zip |
Add CanExtractBundleWithDetachedContainer test.
Diffstat (limited to 'src/WixToolset.Core/IUnbinder.cs')
-rw-r--r-- | src/WixToolset.Core/IUnbinder.cs | 12 |
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 | |||
3 | namespace 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 | } | ||