{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "process", "args": [ // Ask msbuild to generate full paths for file names. "build", "${workspaceFolder}/COM3D2.MeidoPhotoStudio.Plugin.csproj", "/property:GenerateFullPaths=true", "/property:Configuration=Release", // Do not generate summary otherwise it leads to duplicate errors in Problems panel "/consoleloggerparameters:NoSummary" ], "group": { "kind": "build", "isDefault": true }, // Use the standard MS compiler pattern to detect errors, warnings and infos "problemMatcher": "$msCompile", "presentation": { "echo": true, "reveal": "silent", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": false } } ] }