{ "version": "2.0.0", "tasks": [ { "label": "build-desktopgl", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Platforms/Desktop/FloodControl.DesktopGL.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { "label": "build-windows", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Platforms/Windows/FloodControl.Windows.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { "label": "build-android", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Platforms/Android/FloodControl.Android.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { "label": "build-ios", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Platforms/iOS/FloodControl.iOS.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" } ] }