From b76ca336e08497babd49251b165709d9b11eb972 Mon Sep 17 00:00:00 2001 From: Tijmen van Nesselrooij Date: Sun, 17 Dec 2023 01:33:08 +0100 Subject: [PATCH] Fix incorrect .NET version in launch.json (#653) --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 71f442675..24801659f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,7 +10,7 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/src/Clean.Architecture.Web/bin/Debug/net7.0/Clean.Architecture.Web.dll", + "program": "${workspaceFolder}/src/Clean.Architecture.Web/bin/Debug/net8.0/Clean.Architecture.Web.dll", "args": [], "cwd": "${workspaceFolder}/src/Clean.Architecture.Web", "stopAtEntry": false,