OpenAPI.NET.OData/.vscode/launch.json
Vincent Biret d2bb4bd008
- adds launch configuration for update docs tool
Signed-off-by: Vincent Biret <vibiret@microsoft.com>
2021-11-22 14:42:36 -05:00

22 lines
637 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Update Docs",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/tool/UpdateDocs/bin/Debug/net6.0/UpdateDocs.dll",
"cwd": "${workspaceFolder}/tool/UpdateDocs/bin/Debug/net6.0",
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}