From 85eca7b688c1926dcfd1cc25e5b5c283f6496dff Mon Sep 17 00:00:00 2001 From: Viraj Siriwardana Date: Thu, 17 Oct 2024 13:06:50 +1100 Subject: [PATCH] Fixed the dotnet template install command. The dotnet command to install the Duende templates was incorrect. --- IdentityServer/v7/docs/content/quickstarts/0_overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IdentityServer/v7/docs/content/quickstarts/0_overview.md b/IdentityServer/v7/docs/content/quickstarts/0_overview.md index da0d8305..b4d41222 100644 --- a/IdentityServer/v7/docs/content/quickstarts/0_overview.md +++ b/IdentityServer/v7/docs/content/quickstarts/0_overview.md @@ -20,7 +20,7 @@ Every quickstart has a reference solution - you can find the code in the [sample The first thing you should do is install our templates: ``` -dotnet new install Duende.IdentityServer.Templates +dotnet new --install Duende.IdentityServer.Templates ``` They will be used as a starting point for the various tutorials.