Guest User

Untitled

a guest
May 27th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  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": "${workspaceFolder}/Risks.API/bin/Debug/netcoreapp2.0/Risks.API.dll",
  10. "args": [],
  11. "cwd": "${workspaceFolder}/Risks.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": "${workspaceFolder}/Views"
  33. }
  34. },
  35. {
  36. "name": ".NET Core Attach",
  37. "type": "coreclr",
  38. "request": "attach",
  39. "processId": "${command:pickProcess}"
  40. }
  41. ,]
  42. }
Add Comment
Please, Sign In to add comment