You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.3 KiB

  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": ".NET Core Launch (web)",
  6. "type": "coreclr",
  7. "request": "launch",
  8. "preLaunchTask": "build",
  9. "program": "${workspaceRoot}/src/Services/Basket/Basket.API/bin/Debug/netcoreapp1.1/Basket.API.dll",
  10. "args": [],
  11. "cwd": "${workspaceRoot}/src/Services/Basket/Basket.API",
  12. "stopAtEntry": false,
  13. "internalConsoleOptions": "openOnSessionStart",
  14. "launchBrowser": {
  15. "enabled": true,
  16. "args": "${auto-detect-url}",
  17. "windows": {
  18. "command": "cmd.exe",
  19. "args": "/C start ${auto-detect-url}"
  20. },
  21. "osx": {
  22. "command": "open"
  23. },
  24. "linux": {
  25. "command": "xdg-open"
  26. }
  27. },
  28. "env": {
  29. "ASPNETCORE_ENVIRONMENT": "Development"
  30. },
  31. "sourceFileMap": {
  32. "/Views": "${workspaceRoot}/Views"
  33. }
  34. },
  35. {
  36. "name": ".NET Core Attach",
  37. "type": "coreclr",
  38. "request": "attach",
  39. "processId": "${command:pickProcess}"
  40. }
  41. ]
  42. }