launch.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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": "Client",
  9. "type": "coreclr",
  10. "request": "launch",
  11. "program": "${workspaceFolder}/bin/Content.Client/Content.Client.dll",
  12. "args": [],
  13. "console": "internalConsole",
  14. "stopAtEntry": false
  15. },
  16. {
  17. "name": "Client (Compatibility renderer)",
  18. "type": "coreclr",
  19. "request": "launch",
  20. "program": "${workspaceFolder}/bin/Content.Client/Content.Client.dll",
  21. "args": "--cvar display.compat=true",
  22. "console": "internalConsole",
  23. "stopAtEntry": false
  24. },
  25. {
  26. "name": "Server",
  27. "type": "coreclr",
  28. "request": "launch",
  29. "program": "${workspaceFolder}/bin/Content.Server/Content.Server.dll",
  30. "args": [],
  31. "console": "integratedTerminal",
  32. "stopAtEntry": false
  33. },
  34. {
  35. "name": "YAML Linter",
  36. "type": "coreclr",
  37. "request": "launch",
  38. "preLaunchTask": "build-yaml-linter",
  39. "program": "${workspaceFolder}/bin/Content.YAMLLinter/Content.YAMLLinter.dll",
  40. "cwd": "${workspaceFolder}/Content.YAMLLinter",
  41. "console": "internalConsole",
  42. "stopAtEntry": false
  43. }
  44. ],
  45. "compounds": [
  46. {
  47. "name": "Server/Client",
  48. "configurations": [
  49. "Server",
  50. "Client"
  51. ],
  52. "preLaunchTask": "build"
  53. }
  54. ]
  55. }