Добавлен предсказуемый генератор данных
This commit is contained in:
30
.vscode/launch.json
vendored
30
.vscode/launch.json
vendored
@@ -6,7 +6,7 @@
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/Server/bin/Debug/net8.0/Server.dll",
|
||||
"args": [ "http", "json" ],
|
||||
"args": [ "http", "json", "random" ],
|
||||
"cwd": "${workspaceFolder}/Server",
|
||||
"console": "integratedTerminal",
|
||||
"stopAtEntry": false,
|
||||
@@ -32,7 +32,7 @@
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/Server/bin/Debug/net8.0/Server.dll",
|
||||
"args": [ "http", "bin" ],
|
||||
"args": [ "http", "bin", "random" ],
|
||||
"cwd": "${workspaceFolder}/Server",
|
||||
"console": "integratedTerminal",
|
||||
"stopAtEntry": false,
|
||||
@@ -59,7 +59,7 @@
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/Server/bin/Debug/net8.0/Server.dll",
|
||||
"args": [ "tcp", "json" ],
|
||||
"args": [ "tcp", "json", "random" ],
|
||||
"cwd": "${workspaceFolder}/Server",
|
||||
"console": "integratedTerminal",
|
||||
"stopAtEntry": false,
|
||||
@@ -85,7 +85,7 @@
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/Server/bin/Debug/net8.0/Server.dll",
|
||||
"args": [ "tcp", "bin" ],
|
||||
"args": [ "tcp", "bin", "random" ],
|
||||
"cwd": "${workspaceFolder}/Server",
|
||||
"console": "integratedTerminal",
|
||||
"stopAtEntry": false,
|
||||
@@ -105,7 +105,21 @@
|
||||
"presentation": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"name": "TCP/BIN (Predictable) Server",
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/Server/bin/Debug/net8.0/Server.dll",
|
||||
"args": [ "tcp", "bin", "predictable", "2000" ],
|
||||
"cwd": "${workspaceFolder}/Server",
|
||||
"console": "integratedTerminal",
|
||||
"stopAtEntry": false,
|
||||
"presentation": {
|
||||
"hidden": true
|
||||
}
|
||||
},
|
||||
],
|
||||
"compounds": [
|
||||
{
|
||||
@@ -132,6 +146,12 @@
|
||||
"configurations": ["TCP/BIN Server", "TCP/BIN Client"],
|
||||
"preLaunchTask": "dotnet: build",
|
||||
"stopAll": true
|
||||
},
|
||||
{
|
||||
"name": "TCP/BIN: (Predictable) Server and Client",
|
||||
"configurations": ["TCP/BIN (Predictable) Server", "TCP/BIN Client"],
|
||||
"preLaunchTask": "dotnet: build",
|
||||
"stopAll": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user