| 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 WixToolset.Data; |
| 6 | |
| 7 | /// <summary> |
| 8 | /// Interface used to track all files processed. |
| 9 | /// </summary> |
| 10 | public interface ITrackedFile |
| 11 | { |
| 12 | /// <summary> |
| 13 | /// Path to tracked file. |
| 14 | /// </summary> |
| 15 | string Path { get; set; } |
| 16 | |
| 17 | /// <summary> |
| 18 | /// Optional source line numbers where the tracked file was created. |
| 19 | /// </summary> |
| 20 | SourceLineNumber SourceLineNumbers { get; set; } |
| 21 | |
| 22 | /// <summary> |
| 23 | /// Type of tracked file. |
| 24 | /// </summary> |
| 25 | TrackedFileType Type { get; set; } |
| 26 | } |
| 27 | } |