create-project

star 0

Create a new .NET project or solution using dotnet new. Use when the user asks to scaffold a project, solution, class library, console app, or test project. Never write project files manually.

2chevskii By 2chevskii schedule Updated 3/5/2026

name: create-project description: Create a new .NET project or solution using dotnet new. Use when the user asks to scaffold a project, solution, class library, console app, or test project. Never write project files manually.

Create a new .NET project or solution using dotnet new. Do NOT write or modify .csproj, .sln, or related files by hand.

Steps

  1. If the template is unclear, list available templates:

    dotnet new --list
    
  2. Scaffold the project:

    dotnet new <template> --name <name> [--output <path>] [additional options]
    
  3. If the new project belongs to an existing solution, add it:

    dotnet sln <solution.sln> add <path/to/project.csproj>
    
  4. Report what was created and where.

Inputs

Use the template name, project name, and any extra flags provided by the user. If the request does not make the template and target name clear, ask for the missing details before proceeding.

Install via CLI
npx skills add https://github.com/2chevskii/Nitpick.Functional.Unit --skill create-project
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator