tasks.json 332 B

123456789101112131415
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build",
  6. "command": "dotnet",
  7. "type": "process",
  8. "args": [
  9. "build",
  10. "${workspaceFolder}/demo/DemoWeb/DemoWeb.csproj"
  11. ],
  12. "problemMatcher": "$msCompile"
  13. }
  14. ]
  15. }