tasks.json 935 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build - Ix.NET.sln",
  6. "command": "dotnet",
  7. "args": [
  8. "build",
  9. "${workspaceFolder}/Ix.NET.sln",
  10. "/property:GenerateFullPaths=true"
  11. ],
  12. "type": "shell",
  13. "group": "build",
  14. "presentation": {
  15. "reveal": "silent"
  16. },
  17. "problemMatcher": "$msCompile"
  18. },
  19. {
  20. "label": "build - Ix.Async.NET.sln",
  21. "command": "dotnet",
  22. "args": [
  23. "build",
  24. "${workspaceFolder}/Ix.NET.sln",
  25. "/property:GenerateFullPaths=true"
  26. ],
  27. "type": "shell",
  28. "group": "build",
  29. "presentation": {
  30. "reveal": "silent"
  31. },
  32. "problemMatcher": "$msCompile"
  33. }
  34. ]
  35. }