using System.Collections.Generic; namespace VNLib.Tools.Build.Executor.Model { /// /// Represents a project explorer, capable of discovering projects within a module /// internal interface IProjectExplorer { /// /// Discovers all projects within the module /// /// An enumeration of projects discovered IEnumerable DiscoverProjects(); } }