From e51769d45c8926006ac1fc96110d52e0ab480439 Mon Sep 17 00:00:00 2001 From: Christofer Schartau <10133791+Arthacus@users.noreply.github.com> Date: Wed, 17 Sep 2025 09:56:05 +0200 Subject: [PATCH 1/3] Update launch.json to run in dotnet 8. --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8ece7b2e..7fe410a2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/samples/Standalone.MvcSample/bin/Debug/net6.0/Standalone.MvcSample.dll", + "program": "${workspaceFolder}/samples/Standalone.MvcSample/bin/Debug/net8.0/Standalone.MvcSample.dll", "args": [], "cwd": "${workspaceFolder}/samples/Standalone.MvcSample", "stopAtEntry": false, From a88c109ecdd69f60f1c1c1f06ecc80ba59552a24 Mon Sep 17 00:00:00 2001 From: Christofer Schartau <10133791+Arthacus@users.noreply.github.com> Date: Wed, 17 Sep 2025 09:56:41 +0200 Subject: [PATCH 2/3] Add IdentityServer.ServerSample configuration. --- .vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7fe410a2..3d8027f1 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,26 @@ { "version": "0.2.0", "configurations": [ + { + "name": "IdentityServer.ServerSample", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + "program": "${workspaceFolder}/samples/IdentityServer.ServerSample/bin/Debug/net8.0/IdentityServer.ServerSample.dll", + "args": [], + "cwd": "${workspaceFolder}/samples/IdentityServer.ServerSample", + "stopAtEntry": false, + "serverReadyAction": { + "action": "openExternally", + "pattern": "\\bNow listening on:\\s+(https?://\\S+)" + }, + "env": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "sourceFileMap": { + "/Views": "${workspaceFolder}/Views" + } + }, { "name": "Standalone.MvcSample", "type": "coreclr", From d64842569d3183849f6fb624507a688c3297f6df Mon Sep 17 00:00:00 2001 From: Christofer Schartau <10133791+Arthacus@users.noreply.github.com> Date: Wed, 17 Sep 2025 09:57:02 +0200 Subject: [PATCH 3/3] Add IdentityServer.ClientSample configuration. --- .vscode/launch.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3d8027f1..cab2f749 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,26 @@ { "version": "0.2.0", "configurations": [ + { + "name": "IdentityServer.ClientSample", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + "program": "${workspaceFolder}/samples/IdentityServer.ClientSample/bin/Debug/net8.0/IdentityServer.ClientSample.dll", + "args": [], + "cwd": "${workspaceFolder}/samples/IdentityServer.ClientSample", + "stopAtEntry": false, + "serverReadyAction": { + "action": "openExternally", + "pattern": "\\bNow listening on:\\s+(https?://\\S+)" + }, + "env": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "sourceFileMap": { + "/Views": "${workspaceFolder}/Views" + } + }, { "name": "IdentityServer.ServerSample", "type": "coreclr", @@ -47,4 +67,4 @@ "request": "attach" } ] -} \ No newline at end of file +}