.NET templates following best practices and personal preferences.
dotnet new install LoremFooBar.TemplatePack
The following command will create a solution named YourName.YourPackageName
in folder ./YourPackageName
:
dotnet new lfb-package --name YourName.YourPackageName -o YourPackageName
To check for template updates, run:
dotnet new update --check-only
Output will contain the update command for each available update.
To update all templates, run:
dotnet new update