2021-06-11 23:12:10 -04:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "build",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
2023-05-22 00:58:36 -04:00
|
|
|
"${workspaceFolder}/vassago.csproj",
|
2021-06-11 23:12:10 -04:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "publish",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"publish",
|
2023-05-22 00:58:36 -04:00
|
|
|
"${workspaceFolder}/vassago.csproj",
|
2021-06-11 23:12:10 -04:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "watch",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"watch",
|
|
|
|
"run",
|
2023-07-03 12:51:23 -04:00
|
|
|
"--project",
|
|
|
|
"${workspaceFolder}/vassago.csproj"
|
2021-06-11 23:12:10 -04:00
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|