blob: 1155e9b6a3f3b0142618e6f2728486baf4ec9e4f (
plain)
1
2
3
4
5
6
7
8
9
|
// 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
{
public interface IBackendFactory
{
bool TryCreateBackend(string outputType, string outputPath, out IBackend backend);
}
}
|