aboutsummaryrefslogtreecommitdiff
path: root/src/api/wix/WixToolset.Extensibility/IBackendFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/wix/WixToolset.Extensibility/IBackendFactory.cs')
-rw-r--r--src/api/wix/WixToolset.Extensibility/IBackendFactory.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/api/wix/WixToolset.Extensibility/IBackendFactory.cs b/src/api/wix/WixToolset.Extensibility/IBackendFactory.cs
new file mode 100644
index 00000000..99a6704f
--- /dev/null
+++ b/src/api/wix/WixToolset.Extensibility/IBackendFactory.cs
@@ -0,0 +1,10 @@
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.Extensibility
4{
5#pragma warning disable 1591 // TODO: add documentation
6 public interface IBackendFactory
7 {
8 bool TryCreateBackend(string outputType, string outputPath, out IBackend backend);
9 }
10}