aboutsummaryrefslogtreecommitdiff
path: root/src/Model/ITaskfileScope.cs
blob: 6a416fadcdf8dd4a673aa4264b6cb3b7111174b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.IO;

namespace VNLib.Tools.Build.Executor.Model
{
    public interface ITaskfileScope
    {
        /// <summary>
        /// The taskfile working directory
        /// </summary>
        DirectoryInfo WorkingDir { get; }

        /// <summary>
        /// The taskfile variable container
        /// </summary>
        TaskfileVars TaskVars { get; }

        /// <summary>
        /// The optional taskfile name
        /// </summary>
        string? TaskfileName { get; }
    }
}