Before creating your first fullstackhero solution, you should ensure that your local machine has:
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!
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.
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.
dotnet tool update FSH.CLI --global
dotnet tool uninstall FSH.CLI --global
For developers
dotnet pack