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