| 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 | |
| 3 | namespace WixToolset.Core |
| 4 | { |
| 5 | using WixToolset.Data; |
| 6 | using WixToolset.Extensibility.Data; |
| 7 | |
| 8 | /// <summary> |
| 9 | /// Create libraries from input intermediates. |
| 10 | /// </summary> |
| 11 | public interface ILibrarian |
| 12 | { |
| 13 | /// <summary> |
| 14 | /// Combine intermediates into a single result. |
| 15 | /// </summary> |
| 16 | /// <param name="context">Library context.</param> |
| 17 | /// <returns>Library result.</returns> |
| 18 | ILibraryResult Combine(ILibraryContext context); |
| 19 | } |
| 20 | } |