Interface representing expected arguments for a setup task, including an optional project name and a naming convention from Core.ProjectConfiguration.Abstractions.Enums.Conventions.

ExpectedArguments

interface ExpectedArguments {
    convention: Conventions;
    projectName?: string;
}

Properties

convention: Conventions

The naming convention for the project.

projectName?: string

The name of the project (optional).

Generated using TypeDoc