launch.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": ".NET Core Launch (console) - Ix.NET.sln",
  6. "type": "coreclr",
  7. "request": "launch",
  8. "preLaunchTask": "build - Ix.NET.sln",
  9. "program": "${workspaceFolder}/Playground/bin/Debug/netcoreapp2.1/Playground.dll",
  10. "args": [],
  11. "cwd": "${workspaceFolder}/Playground",
  12. "console": "internalConsole",
  13. "stopAtEntry": false,
  14. "internalConsoleOptions": "openOnSessionStart"
  15. },
  16. {
  17. "name": ".NET Core Launch (console) - Ix.Async.NET.sln",
  18. "type": "coreclr",
  19. "request": "launch",
  20. "preLaunchTask": "build - Ix.Async.NET.sln",
  21. "program": "${workspaceFolder}/Playground/bin/Debug/netcoreapp2.1/Playground.dll",
  22. "args": [],
  23. "cwd": "${workspaceFolder}/Playground",
  24. "console": "internalConsole",
  25. "stopAtEntry": false,
  26. "internalConsoleOptions": "openOnSessionStart"
  27. },
  28. {
  29. "name": ".NET Core Attach",
  30. "type": "coreclr",
  31. "request": "attach",
  32. "processId": "${command:pickProcess}"
  33. }
  34. ,]
  35. }