aboutsummaryrefslogtreecommitdiff
path: root/src/Model/ITaskfileScope.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/ITaskfileScope.cs')
-rw-r--r--src/Model/ITaskfileScope.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Model/ITaskfileScope.cs b/src/Model/ITaskfileScope.cs
new file mode 100644
index 0000000..6a416fa
--- /dev/null
+++ b/src/Model/ITaskfileScope.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file