Upsilon-VsCode/.vscode/tasks.json

15 lines
377 B
JSON
Raw Normal View History

2019-02-17 17:07:28 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/UpsilonLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer.csproj"
],
"problemMatcher": "$msCompile"
}
]
}