Init
This commit is contained in:
71
.vscode/launch.json
vendored
Normal file
71
.vscode/launch.json
vendored
Normal 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
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user