From 6e836c4bb9b11d5b5c49c0225ee03e6082d6fd1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Thu, 11 Apr 2024 19:55:06 +0200 Subject: [PATCH] Update the ASP.NET Core samples to use Kestrel as the default HTTP server --- .../Properties/launchSettings.json | 18 ++++++++++-------- .../Properties/launchSettings.json | 18 ++++++++++-------- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/sandbox/OpenIddict.Sandbox.AspNetCore.Client/Properties/launchSettings.json b/sandbox/OpenIddict.Sandbox.AspNetCore.Client/Properties/launchSettings.json index d85eb522..3fac4653 100644 --- a/sandbox/OpenIddict.Sandbox.AspNetCore.Client/Properties/launchSettings.json +++ b/sandbox/OpenIddict.Sandbox.AspNetCore.Client/Properties/launchSettings.json @@ -3,25 +3,27 @@ "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { - "applicationUrl": "http://localhost:53507", + "applicationUrl": "https://localhost:44381/", "sslPort": 44381 } }, + "profiles": { - "IIS Express": { - "commandName": "IISExpress", + "Kestrel": { + "commandName": "Project", "launchBrowser": true, + "applicationUrl": "https://localhost:44381/", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, - "OpenIddict.Sandbox.AspNetCore.Client": { - "commandName": "Project", + + "IIS Express": { + "commandName": "IISExpress", "launchBrowser": true, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:44381/" + } } } -} \ No newline at end of file +} diff --git a/sandbox/OpenIddict.Sandbox.AspNetCore.Server/Properties/launchSettings.json b/sandbox/OpenIddict.Sandbox.AspNetCore.Server/Properties/launchSettings.json index a84423f7..791075ec 100644 --- a/sandbox/OpenIddict.Sandbox.AspNetCore.Server/Properties/launchSettings.json +++ b/sandbox/OpenIddict.Sandbox.AspNetCore.Server/Properties/launchSettings.json @@ -3,25 +3,27 @@ "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { - "applicationUrl": "http://localhost:54540", + "applicationUrl": "https://localhost:44395/", "sslPort": 44395 } }, + "profiles": { - "IIS Express": { - "commandName": "IISExpress", + "Kestrel": { + "commandName": "Project", "launchBrowser": true, + "applicationUrl": "https://localhost:44395/", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, - "OpenIddict.Sandbox.AspNetCore.Server": { - "commandName": "Project", + + "IIS Express": { + "commandName": "IISExpress", "launchBrowser": true, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:44395/" + } } } -} \ No newline at end of file +}