{ "version": "2.0.0", "tasks": [ { "label": "build-windows", "command": "dotnet", "type": "shell", "args": [ "build", "Platforms/Windows/RectangleCollisionSample.Windows.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { "label": "build-desktopgl", "command": "dotnet", "type": "shell", "args": [ "build", "Platforms/Desktop/RectangleCollisionSample.DesktopGL.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { "label": "build-android", "command": "dotnet", "type": "shell", "args": [ "build", "Platforms/Android/RectangleCollisionSample.Android.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { "label": "run-windows", "command": "dotnet", "type": "shell", "args": [ "run", "--project", "Platforms/Windows/RectangleCollisionSample.Windows.csproj" ], "group": "test", "presentation": { "reveal": "always", "panel": "new" }, "dependsOn": "build-windows" }, { "label": "run-desktopgl", "command": "dotnet", "type": "shell", "args": [ "run", "--project", "Platforms/Desktop/RectangleCollisionSample.DesktopGL.csproj" ], "group": "test", "presentation": { "reveal": "always", "panel": "new" }, "dependsOn": "build-desktopgl" }, { "label": "build-android", "command": "dotnet", "type": "shell", "args": [ "build", "Platforms/Android/RectangleCollisionSample.Android.csproj" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { "label": "run-android", "command": "dotnet", "type": "shell", "args": [ "run", "--project", "Platforms/Android/RectangleCollisionSample.Android.csproj" ], "group": "test", "presentation": { "reveal": "always", "panel": "new" }, "dependsOn": "build-android" }, { "label": "build-ios", "command": "dotnet", "type": "shell", "args": [ "build", "Platforms/iOS/RectangleCollisionSample.iOS.csproj" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { "label": "run-ios", "command": "dotnet", "type": "shell", "args": [ "run", "--project", "Platforms/iOS/RectangleCollisionSample.iOS.csproj" ], "group": "test", "presentation": { "reveal": "always", "panel": "new" }, "dependsOn": "build-ios" }, { "label": "clean", "command": "dotnet", "type": "shell", "args": [ "clean" ], "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": [] } ] }