1
0
mirror of https://github.com/TsakiDev/gitea-comment.git synced 2024-10-17 12:38:10 +02:00
gitea-comment/.vscode/tasks.json

41 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2022-06-28 21:41:55 +02:00
{
"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"
}
]
}