This commit is contained in:
Holger Boerchers
2018-12-14 22:48:42 +01:00
parent 5ad02969e9
commit a625f19d0d
6 changed files with 83 additions and 8 deletions

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

@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/InjectorTest/InjectorTest.csproj"
],
"problemMatcher": "$msCompile"
},
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/InjectorTest/InjectorTest.csproj"
],
"problemMatcher": "$msCompile"
}
]
}