From 7130809a233998e402d90aa0cabba16655723dd3 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Mon, 21 Jul 2025 08:45:59 +0300 Subject: [PATCH] fix: launch.json trying to run an outdated name of the project --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7b10d8d..9a2e007 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build-client", - "program": "${workspaceFolder}/Platforms/Desktop/bin/Debug/net9.0/Desktop.dll", + "program": "${workspaceFolder}/Platforms/Desktop/bin/Debug/net9.0/Pong.dll", "args": [], "cwd": "${workspaceFolder}", "stopAtEntry": false,