UFiber.Configurator/.vscode/launch.json

20 lines
596 B
JSON
Raw Normal View History

2021-04-25 05:33:32 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "UFiber.Configurator",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/UFiber.Configurator/bin/Debug/net5.0/UFiber.Configurator.dll",
"args": [
"--host",
"192.168.200.2",
"--dry-run"
],
"cwd": "${workspaceFolder}/src/UFiber.Configurator",
"console": "internalConsole",
"stopAtEntry": false
}
]
}