Initial commit

This commit is contained in:
2018-06-07 19:19:01 +02:00
commit 9be5e9a301
7 changed files with 493 additions and 0 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}/ConsoleApp1/ConsoleApp1.csproj"
],
"problemMatcher": "$msCompile"
},
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/ConsoleApp1/ConsoleApp1.csproj"
],
"problemMatcher": "$msCompile"
}
]
}