changed method for generating something random

This commit is contained in:
2019-07-15 22:48:59 +02:00
parent a625f19d0d
commit e4ce2a472a
7 changed files with 57 additions and 60 deletions

23
.vscode/tasks.json vendored
View File

@@ -7,19 +7,30 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/InjectorTest/InjectorTest.csproj"
"${workspaceFolder}/SmallInjectorDemo/SmallInjectorDemo.csproj"
],
"problemMatcher": "$msCompile"
"problemMatcher": "$tsc"
},
{
"label": "build",
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/InjectorTest/InjectorTest.csproj"
"publish",
"${workspaceFolder}/SmallInjectorDemo/SmallInjectorDemo.csproj"
],
"problemMatcher": "$msCompile"
"problemMatcher": "$tsc"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/SmallInjectorDemo/SmallInjectorDemo.csproj"
],
"problemMatcher": "$tsc"
}
]
}