1
0
mirror of https://bitbucket.org/anguist/ntpa synced 2025-11-21 18:51:50 +00:00
Files
ntpa/.vscode/launch.json

24 lines
650 B
JSON
Raw Normal View History

2016-08-06 22:39:13 +02:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/bin/Ntp.Analyzer.Cli.exe",
2016-08-20 09:41:01 +02:00
"args": ["--config", "${workspaceRoot}/test/ntpa.conf"],
2016-08-06 22:39:13 +02:00
"cwd": "${workspaceRoot}",
"preLaunchTask": "",
"runtimeExecutable": null,
"env": {},
"externalConsole": false
},
{
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}