aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/ILibraryBinaryFileResolver.cs
blob: b438429cc8acca4189301eb63ef4ab1ba9eb9f8e (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.Data
{
    public interface ILibraryBinaryFileResolver
    {
        string Resolve(SourceLineNumber sourceLineNumber, string table, string path);
    }
}