I want to see all available template parameters when I run command dotnet new MyTemplate.
How can I do it? I know when I miss some required param then I see it
>Solution :
Add --help to the end.
dotnet new MyTemplate --help
This shows the specific help information for that template. --help can be used on other levels of dotnet commands.