launch.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. // Use IntelliSense to find out which attributes exist for C# debugging
  3. // Use hover for the description of the existing attributes
  4. // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": ".NET Core Launch (web)",
  9. "type": "coreclr",
  10. "request": "launch",
  11. "preLaunchTask": "build",
  12. // If you have changed target frameworks, make sure to update the program path.
  13. "program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/FMSAdmin.dll",
  14. "args": [],
  15. "cwd": "${workspaceFolder}",
  16. "stopAtEntry": false,
  17. // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
  18. /*
  19. "serverReadyAction": {
  20. "action": "openExternally",
  21. "pattern": "^\\s*Now listening on:\\s+(https?://\\S+)"
  22. },
  23. */
  24. "env": {
  25. "ASPNETCORE_ENVIRONMENT": "Development"
  26. },
  27. "sourceFileMap": {
  28. "/Views": "${workspaceFolder}/Views"
  29. }
  30. },
  31. {
  32. "name": ".NET Core Attach",
  33. "type": "coreclr",
  34. "request": "attach",
  35. "processId": "${command:pickProcess}"
  36. }
  37. ]
  38. }