| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build-windows",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "build",
- "Platforms/Windows/PerformanceMeasuring.Windows.csproj"
- ],
- "group": "build",
- "problemMatcher": [
- "$msCompile"
- ]
- },
- {
- "label": "build-desktopgl",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "build",
- "Platforms/DesktopGL/PerformanceMeasuring.DesktopGL.csproj"
- ],
- "group": "build",
- "problemMatcher": [
- "$msCompile"
- ]
- },
- {
- "label": "build-android",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "build",
- "Platforms/Android/PerformanceMeasuring.Android.csproj"
- ],
- "group": "build",
- "problemMatcher": [
- "$msCompile"
- ]
- },
- {
- "label": "run-windows",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "run",
- "--project",
- "Platforms/Windows/PerformanceMeasuring.Windows.csproj"
- ],
- "group": "test",
- "dependsOn": "build-windows",
- "problemMatcher": [
- "$msCompile"
- ]
- },
- {
- "label": "run-desktopgl",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "run",
- "--project",
- "Platforms/DesktopGL/PerformanceMeasuring.DesktopGL.csproj"
- ],
- "group": "test",
- "dependsOn": "build-desktopgl",
- "problemMatcher": [
- "$msCompile"
- ]
- },
- {
- "label": "clean",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "clean"
- ],
- "group": "build",
- "problemMatcher": [
- "$msCompile"
- ]
- }
- ]
- }
|