tasks.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "build",
  8. "command": "dotnet",
  9. "type": "process",
  10. "args": [
  11. // Ask msbuild to generate full paths for file names.
  12. "build",
  13. "${workspaceFolder}/COM3D2.MeidoPhotoStudio.Plugin.csproj",
  14. "/property:GenerateFullPaths=true",
  15. "/property:Configuration=Release",
  16. // Do not generate summary otherwise it leads to duplicate errors in Problems panel
  17. "/consoleloggerparameters:NoSummary"
  18. ],
  19. "group": {
  20. "kind": "build",
  21. "isDefault": true
  22. },
  23. // Use the standard MS compiler pattern to detect errors, warnings and infos
  24. "problemMatcher": "$msCompile",
  25. "presentation": {
  26. "echo": true,
  27. "reveal": "silent",
  28. "focus": false,
  29. "panel": "shared",
  30. "showReuseMessage": false,
  31. "clear": false
  32. }
  33. }
  34. ]
  35. }