Advertisement
Guest User

Json

a guest
Aug 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. "name": ".NET Core Launch (web)",
  2. "type": "coreclr",
  3. "request": "launch",
  4. "preLaunchTask": "build",
  5. // If you have changed target frameworks, make sure to update the program path.
  6. "program": "${workspaceFolder}/bin/Debug/netcoreapp2.2/AspNetCoreDemo.dll",
  7. "args": [],
  8. "cwd": "${workspaceFolder}",
  9. "stopAtEntry": false,
  10. // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
  11. "serverReadyAction": {
  12. "action": "openExternally",
  13. "pattern": "^\\s*Now listening on:\\s+(https?://\\S+)"
  14. },
  15. "env": {
  16. "ASPNETCORE_ENVIRONMENT": "Development"
  17. },
  18. "sourceFileMap": {
  19. "/Views": "${workspaceFolder}/Views"
  20. }
  21. },
  22. {
  23. "name": ".NET Core Attach",
  24. "type": "coreclr",
  25. "request": "attach",
  26. "processId": "${command:pickProcess}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement