123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build-windows",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "build",
- "Platforms/Windows/Orientation.Windows.csproj",
- "/property:GenerateFullPaths=true",
- "/consoleloggerparameters:NoSummary"
- ],
- "group": "build",
- "presentation": {
- "reveal": "silent"
- },
- "problemMatcher": "$msCompile",
- "isBackground": false
- },
- {
- "label": "build-desktopgl",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "build",
- "Platforms/Desktop/Orientation.DesktopGL.csproj",
- "/property:GenerateFullPaths=true",
- "/consoleloggerparameters:NoSummary"
- ],
- "group": "build",
- "presentation": {
- "reveal": "silent"
- },
- "problemMatcher": "$msCompile",
- "isBackground": false
- },
- {
- "label": "build-android",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "build",
- "Platforms/Android/Orientation.Android.csproj",
- "/property:GenerateFullPaths=true",
- "/consoleloggerparameters:NoSummary"
- ],
- "group": "build",
- "presentation": {
- "reveal": "always"
- },
- "problemMatcher": "$msCompile",
- "isBackground": false
- },
- {
- "label": "build-ios",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "build",
- "Platforms/iOS/Orientation.iOS.csproj",
- "/property:GenerateFullPaths=true",
- "/consoleloggerparameters:NoSummary"
- ],
- "group": "build",
- "presentation": {
- "reveal": "always"
- },
- "problemMatcher": "$msCompile",
- "isBackground": false
- },
- {
- "label": "run-windows",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "run",
- "--project",
- "Platforms/Windows/Orientation.Windows.csproj"
- ],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "presentation": {
- "reveal": "always"
- },
- "problemMatcher": "$msCompile",
- "isBackground": false
- },
- {
- "label": "run-desktopgl",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "run",
- "--project",
- "Platforms/Desktop/Orientation.DesktopGL.csproj"
- ],
- "group": "build",
- "presentation": {
- "reveal": "always"
- },
- "problemMatcher": "$msCompile",
- "isBackground": false
- },
- {
- "label": "run-android",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "run",
- "--project",
- "Platforms/Android/Orientation.Android.csproj"
- ],
- "group": "build",
- "presentation": {
- "reveal": "always"
- },
- "problemMatcher": "$msCompile",
- "isBackground": false
- },
- {
- "label": "run-ios",
- "type": "shell",
- "command": "dotnet",
- "args": [
- "run",
- "--project",
- "Platforms/iOS/Orientation.iOS.csproj"
- ],
- "group": "build",
- "presentation": {
- "reveal": "always"
- },
- "problemMatcher": "$msCompile",
- "isBackground": false
- }
- ]
- }
|