Skip to content

Commit babfc07

Browse files
Update IdentityServer packaging documentation
Refined template references and removed outdated quickstart mentions.
1 parent 7d056bc commit babfc07

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

src/content/docs/identityserver/overview/packaging.mdx

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Packaging and Builds"
33
description: "A guide to Duende IdentityServer packages, templates, UI components, and source code accessibility"
44
date: 2020-09-10T08:22:12+02:00
55
sidebar:
6-
order: 4
7-
label: Packaging & Builds
6+
order: 4
7+
label: Packaging & Builds
88
redirect_from:
99
- /identityserver/v5/overview/packaging/
1010
- /identityserver/v6/overview/packaging/
@@ -63,7 +63,7 @@ Duende IdentityServer Quickstart UI (UI assets only) duende-is-ui
6363
Duende IdentityServer with ASP.NET Core Identity duende-is-aspid [C#] Web/Duende/IdentityServer
6464
Duende IdentityServer with Entity Framework Stores duende-is-ef [C#] Web/Duende/IdentityServer
6565
Duende IdentityServer with In-Memory Stores and Test Users duende-is-inmem [C#] Web/Duende/IdentityServer
66-
Duende IdentityServer Quickstart duende-is-quickstart [C#] Web/Duende/IdentityServer
66+
Duende IdentityServer duende-is [C#] Web/Duende/IdentityServer
6767
```
6868

6969
## Template Descriptions
@@ -144,13 +144,10 @@ internal static class HostingExtensions
144144
app.UseDeveloperExceptionPage();
145145
}
146146

147-
// uncomment if you want to add a UI
148147
app.UseStaticFiles();
149148
app.UseRouting();
150149

151150
app.UseIdentityServer();
152-
153-
// uncomment if you want to add a UI
154151
app.UseAuthorization();
155152
app.MapRazorPages().RequireAuthorization();
156153

@@ -242,7 +239,7 @@ The template targets SQLite by default, but we have included scripts to easily s
242239
The quick start template is our most feature-rich offering and a great starting point for developers who want a simple yet effective UI/UX experience.
243240

244241
```bash
245-
dotnet new duende-is-quickstart
242+
dotnet new duende-is
246243
```
247244

248245
The template is built on the Entity Framework Core template but provides an administrative UI for managing clients, scopes, and claims against a database storage engine. It also has a diagnostics dashboard showing system information, including the licensing tier and features currently used in your IdentityServer deployment.
@@ -265,10 +262,3 @@ library.
265262

266263
[Please read our ASP.NET Identity documentation](/identityserver/aspnet-identity/), to learn more about this integration.
267264

268-
269-
270-
271-
272-
273-
274-

0 commit comments

Comments
 (0)