{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "Build GlosSIWatchdog (Debug)", "command": "msbuild.exe", "args": [ "GlosSI.sln", "/target:GlosSIWatchdog", "/p:Configuration=Debug", "/p:Platform=x64" ], "options": { "cwd": "${workspaceFolder}/..", }, "problemMatcher": ["$msCompile"], "group": { "kind": "build", }, }, { "type": "shell", "label": "Re-Build GlosSIWatchdog (Debug)", "command": "msbuild.exe", "args": [ "GlosSI.sln", "/target:GlosSIWatchdog:Rebuild", "/p:Configuration=Debug", "/p:Platform=x64" ], "options": { "cwd": "${workspaceFolder}/..", }, "problemMatcher": ["$msCompile"], "group": { "kind": "build", }, } ] }