main
cs 24 lines 781 Bytes
Raw
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 for an included file.
9 /// </summary>
10 public interface IIncludedFile
11 {
12 /// <summary>
13 /// Gets the full path of the included file.
14 /// </summary>
15 /// <value>The full path of the included file.</value>
16 string Path { get; set; }
17
18 /// <summary>
19 /// Gets the source line numbers.
20 /// </summary>
21 /// <value>The source line numbers.</value>
22 SourceLineNumber SourceLineNumbers { get; set; }
23 }
24 }