72 lines
2.2 KiB
JSON
72 lines
2.2 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "HTTP/JSON Server",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/Server/bin/Debug/net8.0/Server.dll",
|
|
"args": [ "http", "json" ],
|
|
"cwd": "${workspaceFolder}/Server",
|
|
"console": "integratedTerminal",
|
|
"stopAtEntry": false,
|
|
"presentation": {
|
|
"hidden": true
|
|
}
|
|
},
|
|
{
|
|
"name": "HTTP/JSON Client",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/Client/bin/Debug/net8.0/Client.dll",
|
|
"args": [ "http", "json" ],
|
|
"cwd": "${workspaceFolder}/Client",
|
|
"console": "integratedTerminal",
|
|
"stopAtEntry": false,
|
|
"presentation": {
|
|
"hidden": true
|
|
}
|
|
},
|
|
{
|
|
"name": "HTTP/BIN Server",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/Server/bin/Debug/net8.0/Server.dll",
|
|
"args": [ "http", "bin" ],
|
|
"cwd": "${workspaceFolder}/Server",
|
|
"console": "integratedTerminal",
|
|
"stopAtEntry": false,
|
|
"presentation": {
|
|
"hidden": true
|
|
}
|
|
},
|
|
{
|
|
"name": "HTTP/BIN Client",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/Client/bin/Debug/net8.0/Client.dll",
|
|
"args": [ "http", "bin" ],
|
|
"cwd": "${workspaceFolder}/Client",
|
|
"console": "integratedTerminal",
|
|
"stopAtEntry": false,
|
|
"presentation": {
|
|
"hidden": true
|
|
}
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "HTTP/JSON: Server and Client",
|
|
"configurations": ["HTTP/JSON Server", "HTTP/JSON Client"],
|
|
"preLaunchTask": "dotnet: build",
|
|
"stopAll": true
|
|
},
|
|
{
|
|
"name": "HTTP/BIN: Server and Client",
|
|
"configurations": ["HTTP/BIN Server", "HTTP/BIN Client"],
|
|
"preLaunchTask": "dotnet: build",
|
|
"stopAll": true
|
|
}
|
|
]
|
|
}
|