launch.json 335 B

1234567891011121314151617
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "PowerShell",
  6. "request": "launch",
  7. "name": "ps: Interactive Session",
  8. "cwd": "${workspaceRoot}"
  9. },
  10. {
  11. "name": ".NET Core Attach",
  12. "type": "coreclr",
  13. "request": "attach",
  14. "processId": "${command:pickProcess}"
  15. }
  16. ]
  17. }