Mercurial > pub > ImplabNet
diff .vscode/launch.json @ 240:fa6cbf4d8841 v3
refactoring, moving to dotnercore, simplifying promises
author | cin |
---|---|
date | Tue, 23 Jan 2018 19:39:21 +0300 |
parents | |
children | 6b3e5c48131b |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.vscode/launch.json Tue Jan 23 19:39:21 2018 +0300 @@ -0,0 +1,39 @@ +{ + "version": "0.2.0", + "configurations": [ + + { + "name": "Launch webserver", + "type": "mono", + "request": "launch", + "program": "/usr/lib/mono/4.5/xsp4.exe", + "args":[ + "--root=.", + "--port=8081", + "-v", + "--printlog" + ], + "preLaunchTask": "build", + "cwd": "${workspaceRoot}/Pallada.PoiskAvia.Web", + "runtimeExecutable": null, + "env": {}, + "console": "integratedTerminal" + },{ + "name": "Launch model tests", + "type": "mono", + "request": "launch", + "program": "${env:HOME}/.nuget/packages/nunit.consolerunner/3.7.0/tools/nunit3-console.exe", + "args": [ + "${workspaceRoot}/Pallada.PoiskAvia.Model.Test/bin/Debug/net45/Pallada.PoiskAvia.Model.Test.mono.dll", + "--where=\"cat==Debug\"", + "--labels='On'", + "--inprocess", + "--workers=1" + ], + "preLaunchTask": "build", + "console": "internalConsole", + "internalConsoleOptions": "openOnSessionStart", + "cwd": "${workspaceRoot}/Pallada.PoiskAvia.Model.Test/" + } + ] +} \ No newline at end of file