This commit is contained in:
Пытков Роман
2025-09-17 00:44:21 +03:00
parent 1f0e7c285c
commit bbe5a75dba
15 changed files with 783 additions and 0 deletions

71
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,71 @@
{
"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
}
]
}