123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build-windows",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "build",
- "Platforms/Windows/GooCursor.Windows.csproj",
- "--configuration",
- "Debug"
- ],
- "group": "build",
- "presentation": {
- "echo": true,
- "reveal": "silent",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": true,
- "clear": false
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-desktopgl",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "build",
- "Platforms/Desktop/GooCursor.DesktopGL.csproj",
- "--configuration",
- "Debug"
- ],
- "group": "build",
- "presentation": {
- "echo": true,
- "reveal": "silent",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": true,
- "clear": false
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-android",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "build",
- "Platforms/Android/GooCursor.Android.csproj",
- "--configuration",
- "Debug"
- ],
- "group": "build",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": true,
- "clear": false
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "clean",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "clean"
- ],
- "group": "build",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": true,
- "clear": false
- }
- },
- {
- "label": "restore",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "restore"
- ],
- "group": "build",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": true,
- "clear": false
- }
- },
- {
- "label": "run-windows",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "run",
- "--project",
- "Platforms/Windows/GooCursor.Windows.csproj"
- ],
- "group": "test",
- "dependsOn": "build-windows",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": true,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "isBackground": false
- },
- {
- "label": "run-desktopgl",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "run",
- "--project",
- "Platforms/Desktop/GooCursor.DesktopGL.csproj"
- ],
- "group": "test",
- "dependsOn": "build-desktopgl",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": true,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "isBackground": false
- }
- ]
- }
|