launch.json 353 B

12345678910111213141516
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Attach to Unity",
  6. "type": "coreclr",
  7. "request": "attach",
  8. "processId": "${command:pickProcess}"
  9. },
  10. {
  11. "name": "Attach to Unity 2",
  12. "type": "vstuc",
  13. "request": "attach"
  14. }
  15. ]
  16. }