From 095cf9530875bcd6f66c4244125c9b99f6e31585 Mon Sep 17 00:00:00 2001 From: Noi Date: Thu, 9 May 2024 23:08:31 -0700 Subject: [PATCH] Fix project paths --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8669443..9241ea7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,8 +10,8 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/bin/Debug/net6.0/WorldTime.dll", - "args": [ "-c", "${workspaceFolder}/bin/Debug/net6.0/settings.json" ], + "program": "${workspaceFolder}/bin/Debug/net8.0/WorldTime.dll", + "args": [ "-c", "${workspaceFolder}/bin/Debug/settings.json" ], "cwd": "${workspaceFolder}", // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console "console": "internalConsole",