yavsc/.vscode/tasks.json

80 lines
1.9 KiB
JSON
Raw Normal View History

2025-03-02 16:53:36 +00:00
{
2026-03-01 02:13:26 +00:00
"version": "2.0.0",
2026-08-28 20:10:32 +01:00
"isRoot": true,
"problemMatcher": [
{
"owner": "dotnet",
"fileLocation": ["relative", "${workspaceFolder}"],
"source": "dotnet",
"pattern": {
"regexp": "^\\s+(.*)\\((\\d+):(\\d+)\\):\\s+(error|warning)\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
],
2026-03-01 02:13:26 +00:00
"tasks": [
2026-08-23 18:34:34 +01:00
{
"label": "run-debug-android",
"command": "dotnet",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/src/PostIt/PostIt.Android",
"env": {
"DOTNET_HOST_PATH": "/usr/share/dotnet",
"ANDROID_HOME": "/opt/android-sdk",
2026-08-24 16:26:42 +01:00
"JAVA_HOME": "/usr/lib/jvm/java-1.25.0-openjdk-amd64"
2026-08-23 18:34:34 +01:00
}
},
"args": [
2026-08-24 16:26:42 +01:00
"run",
2026-08-25 14:16:49 +01:00
"-p:TargetFramework=net10.0-android",
2026-08-23 18:34:34 +01:00
"-p:Configuration=Debug",
"-p:AndroidAttachDebugger=true",
2026-08-25 19:20:03 +01:00
"-p:AndroidSdbHostPort=55555",
"-p:AndroidSdbTargetPort=55555"
2026-08-25 14:16:49 +01:00
]
2026-08-23 18:34:34 +01:00
},
2026-03-01 02:13:26 +00:00
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": ["build", "/property:GenerateFullPaths=true"],
"group": "build",
"isBuildCommand": true,
"isTestCommand": false,
"isBackground": true
},
{
"label": "test blogs backend",
2026-03-01 02:13:26 +00:00
"type": "process",
"problemMatcher": ["$msCompile"],
"command": "dotnet",
"args": ["test"],
2026-03-01 02:13:26 +00:00
"options": {
"cwd": "src/Yavsc.Blogs.Tests"
2026-03-01 02:13:26 +00:00
},
"group": {
"kind": "test",
"isDefault": false
2026-06-04 19:18:28 +01:00
}
2026-03-01 02:13:26 +00:00
},
{
"label": "build-webapi",
"type": "process",
"problemMatcher": ["$msCompile"],
"command": "dotnet",
"args": ["build"],
"options": {
"cwd": "src/Api"
},
"group": {
"kind": "build"
},
"isBackground": true
}
]
2025-03-02 16:53:36 +00:00
}