30 lines
926 B
JSON
30 lines
926 B
JSON
|
{
|
||
|
"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"
|
||
|
}
|
||
|
]
|
||
|
}
|