From 61e2dad2388ed4a26661b5f66b74ce4eccbc33c2 Mon Sep 17 00:00:00 2001 From: Adam Ralph Date: Sun, 5 Jan 2025 16:39:09 +0100 Subject: [PATCH] sort files in IS quickstart 1 --- .../docs/content/quickstarts/1_client_credentials.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/IdentityServer/v7/docs/content/quickstarts/1_client_credentials.md b/IdentityServer/v7/docs/content/quickstarts/1_client_credentials.md index d8f69bb2..98062836 100644 --- a/IdentityServer/v7/docs/content/quickstarts/1_client_credentials.md +++ b/IdentityServer/v7/docs/content/quickstarts/1_client_credentials.md @@ -73,16 +73,16 @@ dotnet new isempty -n IdentityServer This will create the following files within a new *src/IdentityServer* directory: -- *IdentityServer.csproj* - project file with the IdentityServer NuGet package - added - *Properties/launchSettings.json* file - launch profile - *appsettings.json* - run time settings -- *Program.cs* - main application entry point +- *Config.cs* - definitions for [resources]({{< ref "/overview/terminology#resources" >}}) and +[clients]({{< ref "/overview/terminology#client" >}}) used by IdentityServer - *HostingExtensions.cs* - configuration for ASP.NET pipeline and services Notably, the IdentityServer services are configured here and the IdentityServer middleware is added to the pipeline here. -- *Config.cs* - definitions for [resources]({{< ref "/overview/terminology#resources" >}}) and -[clients]({{< ref "/overview/terminology#client" >}}) used by IdentityServer +- *IdentityServer.csproj* - project file with the IdentityServer NuGet package + added +- *Program.cs* - main application entry point {{% notice note %}}