aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IBackendFactory.cs
blob: 99a6704ffbf70f2c0ad79359d550e09783945e8e (plain)
1
2
3
4
5
6
7
8
9
10
// 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
{
#pragma warning disable 1591 // TODO: add documentation
    public interface IBackendFactory
    {
        bool TryCreateBackend(string outputType, string outputPath, out IBackend backend);
    }
}