diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IBackendFactory.cs')
-rw-r--r-- | src/WixToolset.Extensibility/IBackendFactory.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/IBackendFactory.cs b/src/WixToolset.Extensibility/IBackendFactory.cs new file mode 100644 index 00000000..12704c0f --- /dev/null +++ b/src/WixToolset.Extensibility/IBackendFactory.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.Extensibility | ||
4 | { | ||
5 | using WixToolset.Extensibility.Services; | ||
6 | |||
7 | public interface IBackendFactory | ||
8 | { | ||
9 | bool TryCreateBackend(string outputType, string outputPath, IBindContext context, out IBackend backend); | ||
10 | } | ||
11 | } | ||