launch.json 1.0 KB

12345678910111213141516171819202122232425262728
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": ".NET Core Launch (console)",
  6. "type": "coreclr",
  7. "request": "launch",
  8. "preLaunchTask": "build",
  9. // If you have changed target frameworks, make sure to update the program path.
  10. "program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/netcoreapp3.1/jellyfin.dll",
  11. "args": [],
  12. "cwd": "${workspaceFolder}/Jellyfin.Server",
  13. // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
  14. "console": "internalConsole",
  15. "stopAtEntry": false,
  16. "internalConsoleOptions": "openOnSessionStart"
  17. },
  18. {
  19. "name": ".NET Core Attach",
  20. "type": "coreclr",
  21. "request": "attach",
  22. "processId": "${command:pickProcess}"
  23. }
  24. ],
  25. "env": {
  26. "DOTNET_CLI_TELEMETRY_OPTOUT": "1"
  27. }
  28. }