launch.json 781 B

12345678910111213141516171819202122232425262728
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "java",
  9. "name": "Current File",
  10. "request": "launch",
  11. "mainClass": "${file}"
  12. },
  13. {
  14. "type": "java",
  15. "name": "StartPro2File",
  16. "request": "launch",
  17. "mainClass": "StartPro2File",
  18. "projectName": "windCollect"
  19. },
  20. {
  21. "type": "java",
  22. "name": "Test",
  23. "request": "launch",
  24. "mainClass": "Test",
  25. "projectName": "windCollect"
  26. }
  27. ]
  28. }