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