Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions IdentityServer/v7/docs/content/overview/packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,21 @@ as a starting point for your modifications.
### Templates
Contains templates for the dotnet CLI.

* NuGet [package](https://www.nuget.org/packages/Duende.IdentityServer.Templates)
* [source code](https://github.com/DuendeSoftware/IdentityServer.Templates)
* NuGet [package](https://www.nuget.org/packages/Duende.Templates)
* [source code](https://github.com/DuendeSoftware/products/tree/main/templates)

You can install the templates using the following command:

```
dotnet new -i Duende.IdentityServer.Templates
dotnet new -i Duende.Templates
```

{{% notice note %}}
You may have a previous version of Duende templates (*Duende.IdentityServer.Templates*) installed on your machine.
Please uninstall the template package and install the latest version.
{{% /notice %}}

### Source Code
You can find the Duende IdentityServer source code on [GitHub](https://github.com/duendesoftware/IdentityServer).
You can find the Duende IdentityServer source code on [GitHub][source].

[source]: https://github.com/DuendeSoftware/products/tree/main/templates
8 changes: 7 additions & 1 deletion IdentityServer/v7/docs/content/quickstarts/0_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,15 @@ 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.Templates
```

{{% notice note %}}
You may have a previous version of Duende templates (*Duende.IdentityServer.Templates*) installed on your machine.
Please uninstall the template package and install the latest version.
{{% /notice %}}


They will be used as a starting point for the various tutorials.

{{< youtube cxYmODQHErM >}}
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,14 @@ the quickstarts. To install the templates open a console window and type the
following command:

```console
dotnet new install Duende.IdentityServer.Templates
dotnet new install Duende.Templates
```

{{% notice note %}}
You may have a previous version of Duende templates (*Duende.IdentityServer.Templates*) installed on your machine.
Please uninstall the template package and install the latest version.
{{% /notice %}}

## Create the Solution and IdentityServer Project

In this section, you will create a directory for the solution and use the
Expand Down