Initial commit

This commit is contained in:
Holger Boerchers
2018-08-12 13:23:44 +02:00
parent 59307bf28e
commit 7326ff6684
10 changed files with 253 additions and 0 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}/Playground.csproj"
],
"problemMatcher": "$msCompile"
}
]
}