| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build-windows",
- "type": "shell",
- "command": "dotnet build Platforms/Windows/StateObject.Windows.csproj",
- "group": "build",
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-desktopgl",
- "type": "shell",
- "command": "dotnet build Platforms/DesktopGL/StateObject.DesktopGL.csproj",
- "group": "build",
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-android",
- "type": "shell",
- "command": "dotnet build Platforms/Android/StateObject.Android.csproj",
- "group": "build",
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-ios",
- "type": "shell",
- "command": "dotnet build Platforms/iOS/StateObject.iOS.csproj",
- "group": "build",
- "problemMatcher": "$msCompile"
- },
- {
- "label": "run-windows",
- "type": "shell",
- "command": "dotnet run --project Platforms/Windows/StateObject.Windows.csproj",
- "group": "test",
- "problemMatcher": []
- },
- {
- "label": "run-desktopgl",
- "type": "shell",
- "command": "dotnet run --project Platforms/DesktopGL/StateObject.DesktopGL.csproj",
- "group": "test",
- "problemMatcher": []
- },
- {
- "label": "run-android",
- "type": "shell",
- "command": "dotnet run --project Platforms/Android/StateObject.Android.csproj",
- "group": "test",
- "problemMatcher": []
- },
- {
- "label": "run-ios",
- "type": "shell",
- "command": "dotnet run --project Platforms/iOS/StateObject.iOS.csproj",
- "group": "test",
- "problemMatcher": []
- }
- ]
- }
|