Changed implementation of random identifier.

This commit is contained in:
Holger Boerchers
2018-08-12 20:11:01 +02:00
parent 9c5a1e7ab8
commit ae35676873
7 changed files with 48 additions and 15 deletions

2
.vscode/launch.json vendored
View File

@@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/Playground.dll",
"program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/SmallInjectorDemo.dll",
"args": [],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window

2
.vscode/tasks.json vendored
View File

@@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/Playground.csproj"
"${workspaceFolder}/SmallInjectorDemo.csproj"
],
"problemMatcher": "$msCompile"
}