Commit Description:
Tidy code.
Commit Description:
Tidy code.
Show/Diff file:
Action:
encompass-cs/.vscode/tasks.json
35 lines | 878 B | application/json | JsonLexer
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/test/test.csproj"
],
"problemMatcher": "$tsc"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/test/test.csproj"
],
"problemMatcher": "$tsc"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/test/test.csproj"
],
"problemMatcher": "$tsc"
}
]
}