From 2052846884f6174fb06ea6c961d49a87fa13ae2c Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sat, 22 Nov 2025 07:21:10 -0600 Subject: [PATCH] chore: fix launch.json so path for debug reflects using .NET 10 --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 6c8934d..0668f58 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -22,7 +22,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build_blog", - "program": "${workspaceFolder}/src/Blog/bin/Debug/net8.0/Blog.dll", + "program": "${workspaceFolder}/src/Blog/bin/Debug/net10.0/Blog.dll", "args": [], "cwd": "${workspaceFolder}/src/Blog", "stopAtEntry": false,