12 lines
331 B
C#
12 lines
331 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Matrix42.Extensions.Scaffolder.Core;
|
|
|
|
public interface IExtensionScaffolder
|
|
{
|
|
/// <summary>
|
|
/// Generates all files/folders according to options and returns the list of generated csproj paths.
|
|
/// </summary>
|
|
IReadOnlyList<string> Generate(ExtensionScaffoldingOptions options);
|
|
}
|