Skip to content

Commit d470477

Browse files
authored
Update tutorial-blazor-server.md
The original `dotnet new install Microsoft.Identity.Web.ProjectTemplates` can't be run in my powershell 7. I guess there is a missing '--' before 'install'.
1 parent f4e2317 commit d470477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/tutorial-blazor-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Finally, because the app calls a protected API (in this case Microsoft Graph), i
5454
Run the following command to download the templates for `Microsoft.Identity.Web`, which we'll make use of in this tutorial.
5555

5656
```dotnetcli
57-
dotnet new install Microsoft.Identity.Web.ProjectTemplates
57+
dotnet new --install Microsoft.Identity.Web.ProjectTemplates
5858
```
5959

6060
Then, run the following command to create the application. Replace the placeholders in the command with the proper information from your app's overview page and execute the command in a command shell. The output location specified with the `-o|--output` option creates a project folder if it doesn't exist and becomes part of the app's name.

0 commit comments

Comments
 (0)