ntpa/.vscode/launch.json

24 lines
650 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/bin/Ntp.Analyzer.Cli.exe",
"args": ["--config", "${workspaceRoot}/test/ntpa.conf"],
"cwd": "${workspaceRoot}",
"preLaunchTask": "",
"runtimeExecutable": null,
"env": {},
"externalConsole": false
},
{
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}