| 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 System; |
| 6 | using System.Collections.Generic; |
| 7 | using System.Threading; |
| 8 | using WixToolset.Data; |
| 9 | using WixToolset.Extensibility; |
| 10 | using WixToolset.Extensibility.Data; |
| 11 | using WixToolset.Extensibility.Services; |
| 12 | |
| 13 | internal class LibraryResult : ILibraryResult |
| 14 | { |
| 15 | public IReadOnlyCollection<ITrackedFile> TrackedFiles { get; set; } |
| 16 | |
| 17 | public Intermediate Library { get; set; } |
| 18 | } |
| 19 | } |