I am trying to set up authentication for a Blazor Server-Side Rendering (SSR) application, but I'm encountering an issue when using the dotnet new command with the --auth option. Here's the command I'm trying to run:
dotnet new blazor --auth individualHowever, I'm getting the following error:
Error: Invalid option(s):--auth'--auth' is not a valid optionindividual'individual' is not a valid optionIt appears that the --auth option is not recognized for Blazor SSR projects. How can I add authentication to a Blazor SSR application? Is there a different approach or set of commands I should be using?
Thank you for your assistance!