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",
|
|
|
|
"${workspaceFolder}/tests/MediaBrowser.Api.Tests/MediaBrowser.Api.Tests.csproj"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
2019-01-02 07:10:43 +00:00
|
|
|
}
|
|
|
|
]
|
2020-05-19 10:45:39 +00:00
|
|
|
}
|