mirror of
https://github.com/claunia/marechai.git
synced 2026-07-08 17:57:08 +00:00
Add platform-specific configurations for Linux and macOS in launch.json
This commit is contained in:
21
.vscode/launch.json
vendored
21
.vscode/launch.json
vendored
@@ -5,11 +5,16 @@
|
|||||||
"name": "Server (Marechai.Server)",
|
"name": "Server (Marechai.Server)",
|
||||||
"type": "coreclr",
|
"type": "coreclr",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/Marechai.Server/bin/Debug/net10.0/Marechai.Server.dll",
|
|
||||||
"args": [],
|
"args": [],
|
||||||
"cwd": "${workspaceFolder}/Marechai.Server",
|
"cwd": "${workspaceFolder}/Marechai.Server",
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"console": "internalConsole",
|
"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": {
|
"serverReadyAction": {
|
||||||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
|
||||||
"uriFormat": "%s",
|
"uriFormat": "%s",
|
||||||
@@ -40,11 +45,16 @@
|
|||||||
"name": "Blazor App (Marechai)",
|
"name": "Blazor App (Marechai)",
|
||||||
"type": "coreclr",
|
"type": "coreclr",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/Marechai/bin/Debug/net10.0/Marechai.dll",
|
|
||||||
"args": [],
|
"args": [],
|
||||||
"cwd": "${workspaceFolder}/Marechai",
|
"cwd": "${workspaceFolder}/Marechai",
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"console": "internalConsole",
|
"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": {
|
"serverReadyAction": {
|
||||||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
|
||||||
"uriFormat": "%s",
|
"uriFormat": "%s",
|
||||||
@@ -56,11 +66,16 @@
|
|||||||
"name": "Server + Desktop App",
|
"name": "Server + Desktop App",
|
||||||
"type": "coreclr",
|
"type": "coreclr",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/Marechai.Server/bin/Debug/net10.0/Marechai.Server.dll",
|
|
||||||
"args": [],
|
"args": [],
|
||||||
"cwd": "${workspaceFolder}/Marechai.Server",
|
"cwd": "${workspaceFolder}/Marechai.Server",
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"console": "internalConsole",
|
"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",
|
"preLaunchTask": "build-and-run-both",
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "3-combined",
|
"group": "3-combined",
|
||||||
|
|||||||
Reference in New Issue
Block a user