mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-16 16:04:08 +01:00
56be9502af
(cherry picked from commit 5061dc4b5e5ea9925740496a5939a1762788b793) Closes #9914
45 lines
1009 B
JSON
45 lines
1009 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build dotnet",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"msbuild",
|
|
"-restore",
|
|
"${workspaceFolder}/src/Radarr.sln",
|
|
"-p:GenerateFullPaths=true",
|
|
"-p:Configuration=Debug",
|
|
"-p:Platform=Posix",
|
|
"-consoleloggerparameters:NoSummary;ForceNoAlign"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "publish",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/src/Radarr.sln",
|
|
"-property:GenerateFullPaths=true",
|
|
"-consoleloggerparameters:NoSummary;ForceNoAlign"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "watch",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"watch",
|
|
"run",
|
|
"--project",
|
|
"${workspaceFolder}/src/Radarr.sln"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
}
|
|
]
|
|
}
|