diff options
Diffstat (limited to 'src/WixToolset.Core/IDecompiler.cs')
-rw-r--r-- | src/WixToolset.Core/IDecompiler.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/WixToolset.Core/IDecompiler.cs b/src/WixToolset.Core/IDecompiler.cs new file mode 100644 index 00000000..b9bb7ed8 --- /dev/null +++ b/src/WixToolset.Core/IDecompiler.cs | |||
@@ -0,0 +1,11 @@ | |||
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.Extensibility.Data; | ||
6 | |||
7 | public interface IDecompiler | ||
8 | { | ||
9 | BindResult Decompile(IDecompileContext context); | ||
10 | } | ||
11 | } | ||