tasks.json 904 B

123456789101112131415161718192021222324
  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": "build",
  20. // Use the standard MS compiler pattern to detect errors, warnings and infos
  21. "problemMatcher": "$msCompile"
  22. }
  23. ]
  24. }