aboutsummaryrefslogtreecommitdiff
path: root/src/Model/IProjectExplorer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/IProjectExplorer.cs')
-rw-r--r--src/Model/IProjectExplorer.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Model/IProjectExplorer.cs b/src/Model/IProjectExplorer.cs
new file mode 100644
index 0000000..3c9c61b
--- /dev/null
+++ b/src/Model/IProjectExplorer.cs
@@ -0,0 +1,16 @@
+using System.Collections.Generic;
+
+namespace VNLib.Tools.Build.Executor.Model
+{
+ /// <summary>
+ /// Represents a project explorer, capable of discovering projects within a module
+ /// </summary>
+ internal interface IProjectExplorer
+ {
+ /// <summary>
+ /// Discovers all projects within the module
+ /// </summary>
+ /// <returns>An enumeration of projects discovered</returns>
+ IEnumerable<IProject> DiscoverProjects();
+ }
+} \ No newline at end of file