Add VS Code build files (#625)

This commit is contained in:
Karl Burtram
2018-06-04 12:36:38 -07:00
committed by GitHub
parent 4f214f43e9
commit 3b82033b12
3 changed files with 45 additions and 3 deletions

15
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"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"
}
]
}