using System.Collections.Generic; namespace Matrix42.Extensions.Scaffolder.Core; public interface IExtensionScaffolder { /// /// Generates all files/folders according to options and returns the list of generated csproj paths. /// IReadOnlyList Generate(ExtensionScaffoldingOptions options); }