aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/IIncludedFile.cs
blob: ac5e604c513e86ea950ed4481de449c85c492b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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.

namespace WixToolset.Extensibility.Data
{
    using WixToolset.Data;

    public interface IIncludedFile
    {
        /// <summary>
        /// Gets the full path of the included file.
        /// </summary>
        /// <value>The full path of the included file.</value>
        string Path { get; set; }

        /// <summary>
        /// Gets the source line numbers.
        /// </summary>
        /// <value>The source line numbers.</value>
        SourceLineNumber SourceLineNumbers { get; set; }
    }
}