Skip to content

Latest commit

 

History

History
 
 

fsh-cli

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Fullstackhero CLI Tool

Prerequisites

Before creating your first fullstackhero solution, you should ensure that your local machine has:

  • .NET 7 You can find the download here.
  • NodeJS (16+) You can find the download here.

Installation

After you have installed .NET, you will need to install the fsh console tool.

dotnet tool install --global FSH.CLI
fsh install

You are now ready to create your first FSH project!

FSH .NET WebAPI Boilerplate

Here's how you would create a Solution using the FSH .NET WebAPI Boilerplate.

fsh api new Demo.Server

OR

fsh api n Demo.Server

This will create a new solution for you using the FSH Templates.

FSH Blazor WASM Boilerplate

Here's how you would create a Solution using the FSH Blazor WASM Boilerplate.

fsh wasm new Demo.Blazor

OR

fsh wasm n Demo.Blazor

This will create a new solution for you using the FSH Templates.

Update

dotnet tool update FSH.CLI --global

Uninstall

dotnet tool uninstall FSH.CLI --global

NuGet Generation

For developers

dotnet pack

More Features Incoming!