| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build-windows",
- "command": "dotnet",
- "type": "process",
- "args": [
- "build",
- "Platforms/Windows/2DShaderSample.Windows.csproj"
- ],
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-desktopgl",
- "command": "dotnet",
- "type": "process",
- "args": [
- "build",
- "Platforms/DesktopGL/2DShaderSample.DesktopGL.csproj"
- ],
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-ios",
- "command": "dotnet",
- "type": "process",
- "args": [
- "build",
- "Platforms/iOS/2DShaderSample.iOS.csproj"
- ],
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-android",
- "command": "dotnet",
- "type": "process",
- "args": [
- "build",
- "Platforms/Android/2DShaderSample.Android.csproj"
- ],
- "problemMatcher": "$msCompile"
- }
- ]
- }
|