2019-01-02 07:10:43 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "build",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"${workspaceFolder}/Jellyfin.Server/Jellyfin.Server.csproj"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
2020-05-19 10:45:39 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "api tests",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"test",
|
2020-09-03 21:13:46 +00:00
|
|
|
"${workspaceFolder}/tests/Jellyfin.Api.Tests/Jellyfin.Api.Tests.csproj"
|
2020-05-19 10:45:39 +00:00
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
2019-01-02 07:10:43 +00:00
|
|
|
}
|
2020-06-22 04:06:03 +00:00
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"env": {
|
|
|
|
"DOTNET_CLI_TELEMETRY_OPTOUT": "1"
|
|
|
|
}
|
|
|
|
}
|
2020-05-19 10:45:39 +00:00
|
|
|
}
|