tasks.json 822 B

1234567891011121314151617181920212223242526
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build",
  6. "command": "dotnet",
  7. "type": "process",
  8. "args": ["build", "${workspaceFolder}/server/Admin.NET.sln", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign"],
  9. "problemMatcher": "$msCompile"
  10. },
  11. {
  12. "label": "publish",
  13. "command": "dotnet",
  14. "type": "process",
  15. "args": ["publish", "${workspaceFolder}/server/Admin.NET.sln", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign"],
  16. "problemMatcher": "$msCompile"
  17. },
  18. {
  19. "label": "watch",
  20. "command": "dotnet",
  21. "type": "process",
  22. "args": ["watch", "run", "--project", "${workspaceFolder}/server/Admin.NET.sln"],
  23. "problemMatcher": "$msCompile"
  24. }
  25. ]
  26. }