launch.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "web",
  9. "command": "vite",
  10. "request": "launch",
  11. "type": "node-terminal",
  12. "cwd": "${workspaceFolder}/Web"
  13. },
  14. {
  15. "name": ".NET",
  16. "type": "coreclr",
  17. "request": "launch",
  18. "preLaunchTask": "build",
  19. "program": "${workspaceFolder}/Admin.NET/Admin.NET.Web.Entry/bin/Debug/net6.0/Admin.NET.Web.Entry.dll",
  20. "args": [],
  21. "cwd": "${workspaceFolder}/Admin.NET/Admin.NET.Web.Entry",
  22. "stopAtEntry": false,
  23. "serverReadyAction": {
  24. "action": "openExternally",
  25. "pattern": "\\bNow listening on:\\s+(https?://\\S+)"
  26. },
  27. "env": {
  28. "ASPNETCORE_ENVIRONMENT": "Development"
  29. },
  30. "sourceFileMap": {
  31. "/Views": "${workspaceFolder}/Views"
  32. }
  33. },
  34. {
  35. "name": ".NET Core Attach",
  36. "type": "coreclr",
  37. "request": "attach"
  38. }
  39. ]
  40. }