From 21a2f60a84655d872eef900d3ca19dbfbd48c676 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sat, 25 Apr 2026 16:23:35 +0100 Subject: [PATCH] Add platform-specific configurations for Linux and macOS in launch.json --- .vscode/launch.json | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 086fd9e0..acbbe64c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,11 +5,16 @@ "name": "Server (Marechai.Server)", "type": "coreclr", "request": "launch", - "program": "${workspaceFolder}/Marechai.Server/bin/Debug/net10.0/Marechai.Server.dll", "args": [], "cwd": "${workspaceFolder}/Marechai.Server", "stopAtEntry": false, "console": "internalConsole", + "linux": { + "program": "${workspaceFolder}/Marechai.Server/bin/Debug/net10.0/linux-x64/Marechai.Server" + }, + "osx": { + "program": "${workspaceFolder}/Marechai.Server/bin/Debug/net10.0/osx-arm64/Marechai.Server" + }, "serverReadyAction": { "pattern": "\\bNow listening on:\\s+(https?://\\S+)", "uriFormat": "%s", @@ -40,11 +45,16 @@ "name": "Blazor App (Marechai)", "type": "coreclr", "request": "launch", - "program": "${workspaceFolder}/Marechai/bin/Debug/net10.0/Marechai.dll", "args": [], "cwd": "${workspaceFolder}/Marechai", "stopAtEntry": false, "console": "internalConsole", + "linux": { + "program": "${workspaceFolder}/Marechai/bin/Debug/net10.0/linux-x64/Marechai" + }, + "osx": { + "program": "${workspaceFolder}/Marechai/bin/Debug/net10.0/osx-arm64/Marechai" + }, "serverReadyAction": { "pattern": "\\bNow listening on:\\s+(https?://\\S+)", "uriFormat": "%s", @@ -56,11 +66,16 @@ "name": "Server + Desktop App", "type": "coreclr", "request": "launch", - "program": "${workspaceFolder}/Marechai.Server/bin/Debug/net10.0/Marechai.Server.dll", "args": [], "cwd": "${workspaceFolder}/Marechai.Server", "stopAtEntry": false, "console": "internalConsole", + "linux": { + "program": "${workspaceFolder}/Marechai.Server/bin/Debug/net10.0/linux-x64/Marechai.Server" + }, + "osx": { + "program": "${workspaceFolder}/Marechai.Server/bin/Debug/net10.0/osx-arm64/Marechai.Server" + }, "preLaunchTask": "build-and-run-both", "presentation": { "group": "3-combined",