1
0
mirror of https://github.com/TsakiDev/gitea-comment.git synced 2024-09-18 08:51:57 +02:00
gitea-comment/.vscode/tasks.json
Ilias Tsakiridis 55022dba9c Initial commit
2022-06-28 22:46:21 +03:00

41 lines
1.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/IT.GiteaComment.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/IT.GiteaComment.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/IT.GiteaComment.csproj"
],
"problemMatcher": "$msCompile"
}
]
}