| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build-windows",
- "command": "dotnet",
- "type": "process",
- "args": [
- "build",
- "${workspaceFolder}/Platforms/Windows/AsteroidBeltAssault.Windows.csproj"
- ],
- "group": "build",
- "presentation": {
- "echo": true,
- "reveal": "silent",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": true,
- "clear": false
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-desktopgl",
- "command": "dotnet",
- "type": "process",
- "args": [
- "build",
- "${workspaceFolder}/Platforms/DesktopGL/AsteroidBeltAssault.DesktopGL.csproj"
- ],
- "group": "build",
- "presentation": {
- "echo": true,
- "reveal": "silent",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": true,
- "clear": false
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-deploy-android",
- "type": "shell",
- "command": "dotnet build -p:Configuration=Debug ${workspaceFolder}/Platforms/Android/AsteroidBeltAssault.Android.csproj \"/t:Install\" /p:AndroidAttachDebugger=true /p:AndroidSdbHostPort=10000"
- },
- {
- "label": "build-ios",
- "command": "dotnet",
- "type": "process",
- "args": [
- "build",
- "${workspaceFolder}/Platforms/iOS/AsteroidBeltAssault.iOS.csproj"
- ],
- "group": "build",
- "presentation": {
- "echo": true,
- "reveal": "silent",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": true,
- "clear": false
- },
- "problemMatcher": "$msCompile"
- }
- ]
- }
|