tasks.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build",
  6. "command": "dotnet",
  7. "type": "process",
  8. "args": [
  9. "build",
  10. "${workspaceFolder}/MultipleMaids.csproj",
  11. "/property:GenerateFullPaths=true",
  12. "/property:Configuration=Release",
  13. "/consoleloggerparameters:NoSummary"
  14. ],
  15. "problemMatcher": "$msCompile"
  16. },
  17. {
  18. "label": "publish",
  19. "command": "dotnet",
  20. "type": "process",
  21. "args": [
  22. "publish",
  23. "${workspaceFolder}/MultipleMaids.csproj",
  24. "/property:GenerateFullPaths=true",
  25. "/consoleloggerparameters:NoSummary"
  26. ],
  27. "problemMatcher": "$msCompile"
  28. },
  29. {
  30. "label": "watch",
  31. "command": "dotnet",
  32. "type": "process",
  33. "args": [
  34. "watch",
  35. "run",
  36. "${workspaceFolder}/MultipleMaids.csproj",
  37. "/property:GenerateFullPaths=true",
  38. "/consoleloggerparameters:NoSummary"
  39. ],
  40. "problemMatcher": "$msCompile"
  41. }
  42. ]
  43. }