From 7efd412cda00b369bc331c9bedd8db971d98fee7 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 18 Oct 2017 15:21:45 -0700 Subject: Incorporate refactoring of WixToolset.Core assemblies --- src/WixToolset.Extensibility/IBackendFactory.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/WixToolset.Extensibility/IBackendFactory.cs (limited to 'src/WixToolset.Extensibility/IBackendFactory.cs') 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 @@ +// 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. + +namespace WixToolset.Extensibility +{ + using WixToolset.Extensibility.Services; + + public interface IBackendFactory + { + bool TryCreateBackend(string outputType, string outputPath, IBindContext context, out IBackend backend); + } +} -- cgit v1.2.3-55-g6feb