printer-api/.vscode/launch.json

30 lines
926 B
JSON
Raw Normal View History

2022-02-17 15:45:42 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net6.0/printerApi.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"pipeTransport": {
"pipeProgram": "sh",
"pipeCwd": "${workspaceFolder}",
"pipeArgs": ["-c"],
"debuggerPath": "/bin/netcoredbg"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}