Moved some logic to commandhandler, to be able to use it externally easier

This commit is contained in:
Master Kwoth
2017-05-02 20:16:34 +02:00
parent f5523c8469
commit 8f894e095b
4 changed files with 66 additions and 16 deletions

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

@ -0,0 +1,16 @@
{
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "build",
"args": [
"${workspaceRoot}/src/NadekoBot/project.json"
],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
}