jellyfin/.vscode/tasks.json

31 lines
753 B
JSON
Raw Permalink Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Jellyfin.Server/Jellyfin.Server.csproj"
],
"problemMatcher": "$msCompile"
2020-05-19 12:45:39 +02:00
},
{
"label": "api tests",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/tests/Jellyfin.Api.Tests/Jellyfin.Api.Tests.csproj"
2020-05-19 12:45:39 +02:00
],
"problemMatcher": "$msCompile"
}
2020-06-22 06:06:03 +02:00
],
"options": {
"env": {
"DOTNET_CLI_TELEMETRY_OPTOUT": "1"
}
}
2020-05-19 12:45:39 +02:00
}