From 67802f5cfb6a3957cc90e87026b16bd264a54462 Mon Sep 17 00:00:00 2001 From: Alexandr Stelnykovych Date: Wed, 8 Apr 2026 15:30:04 +0300 Subject: [PATCH] vscode config: Use consistent debug binary output path in VS Code launch configuration - Add fixed output path for portmaster-core debug configurations - Prevents creation of temporary debug binaries with random suffixes - Reuses same binary across debug sessions --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 809c8af1..24b239e5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,8 +10,7 @@ "request": "launch", "mode": "auto", "program": "${workspaceFolder}/cmds/portmaster-core", - - + "output": "${workspaceFolder}/__portmaster-core-debug", "windows": { "args": ["--bin-dir=C:\\Program Files\\Portmaster", "--log-stdout", "--log", "trace"] @@ -30,6 +29,7 @@ "request": "launch", "mode": "auto", "program": "${workspaceFolder}/cmds/portmaster-core", + "output": "${workspaceFolder}/__portmaster-core-debug", "windows": { "args": ["--bin-dir=C:\\Program Files\\Portmaster", "--log-stdout", "--log", "trace", "--disable-interception=true"]