| 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.Extensibility.Data |
| 4 | { |
| 5 | using System.Collections.Generic; |
| 6 | |
| 7 | /// <summary> |
| 8 | /// Result of resolving a file. |
| 9 | /// </summary> |
| 10 | public interface IResolveFileResult |
| 11 | { |
| 12 | /// <summary> |
| 13 | /// Collection of paths checked to find file. |
| 14 | /// </summary> |
| 15 | IReadOnlyCollection<string> CheckedPaths { get; set; } |
| 16 | |
| 17 | /// <summary> |
| 18 | /// Path to found file, if found. |
| 19 | /// </summary> |
| 20 | string Path { get; set; } |
| 21 | } |
| 22 | } |