You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1009 B
45 lines
1009 B
7 months ago
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "build dotnet",
|
||
|
"command": "dotnet",
|
||
|
"type": "process",
|
||
|
"args": [
|
||
|
"msbuild",
|
||
|
"-restore",
|
||
|
"${workspaceFolder}/src/Lidarr.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/Lidarr.sln",
|
||
|
"-property:GenerateFullPaths=true",
|
||
|
"-consoleloggerparameters:NoSummary;ForceNoAlign"
|
||
|
],
|
||
|
"problemMatcher": "$msCompile"
|
||
|
},
|
||
|
{
|
||
|
"label": "watch",
|
||
|
"command": "dotnet",
|
||
|
"type": "process",
|
||
|
"args": [
|
||
|
"watch",
|
||
|
"run",
|
||
|
"--project",
|
||
|
"${workspaceFolder}/src/Lidarr.sln"
|
||
|
],
|
||
|
"problemMatcher": "$msCompile"
|
||
|
}
|
||
|
]
|
||
|
}
|