Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

38 wiersze
1.3 KiB

  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}/simples/JT808.Gateway.SimpleServer/bin/Debug/net8.0/JT808.Gateway.SimpleServer.dll",
  14. "args": [],
  15. "cwd": "${workspaceFolder}/simples/JT808.Gateway.SimpleServer",
  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. "serverReadyAction": {
  19. "action": "openExternally",
  20. "pattern": "\\bNow listening on:\\s+(https?://\\S+)"
  21. },
  22. "env": {
  23. "ASPNETCORE_ENVIRONMENT": "Development"
  24. },
  25. "sourceFileMap": {
  26. "/Views": "${workspaceFolder}/Views"
  27. },
  28. "console": "internalConsole"
  29. },
  30. {
  31. "name": ".NET Core Attach",
  32. "type": "coreclr",
  33. "request": "attach",
  34. "processId": "${command:pickProcess}"
  35. }
  36. ]
  37. }