You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/.vscode/launch.json

19 lines
436 B

{
"version": "0.2.0",
"configurations": [
{
"name": "radarr.run",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/Recyclarr.Cli/bin/Debug/net8.0/recyclarr",
"args": [
"radarr"
],
"cwd": "${workspaceFolder}/src/Recyclarr.Cli/bin/Debug/net8.0/",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}