Files
sqltoolsservice/.vscode/tasks.json
2018-06-04 12:36:38 -07:00

15 lines
414 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/test/Microsoft.SqlTools.ServiceLayer.IntegrationTests/Microsoft.SqlTools.ServiceLayer.IntegrationTests.csproj"
],
"problemMatcher": "$msCompile"
}
]
}