Mercurial > pub > ImplabNet
comparison .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 |
comparison
equal
deleted
inserted
replaced
239:eedf4d834e67 | 240:fa6cbf4d8841 |
---|---|
1 { | |
2 "version": "0.2.0", | |
3 "configurations": [ | |
4 | |
5 { | |
6 "name": "Launch webserver", | |
7 "type": "mono", | |
8 "request": "launch", | |
9 "program": "/usr/lib/mono/4.5/xsp4.exe", | |
10 "args":[ | |
11 "--root=.", | |
12 "--port=8081", | |
13 "-v", | |
14 "--printlog" | |
15 ], | |
16 "preLaunchTask": "build", | |
17 "cwd": "${workspaceRoot}/Pallada.PoiskAvia.Web", | |
18 "runtimeExecutable": null, | |
19 "env": {}, | |
20 "console": "integratedTerminal" | |
21 },{ | |
22 "name": "Launch model tests", | |
23 "type": "mono", | |
24 "request": "launch", | |
25 "program": "${env:HOME}/.nuget/packages/nunit.consolerunner/3.7.0/tools/nunit3-console.exe", | |
26 "args": [ | |
27 "${workspaceRoot}/Pallada.PoiskAvia.Model.Test/bin/Debug/net45/Pallada.PoiskAvia.Model.Test.mono.dll", | |
28 "--where=\"cat==Debug\"", | |
29 "--labels='On'", | |
30 "--inprocess", | |
31 "--workers=1" | |
32 ], | |
33 "preLaunchTask": "build", | |
34 "console": "internalConsole", | |
35 "internalConsoleOptions": "openOnSessionStart", | |
36 "cwd": "${workspaceRoot}/Pallada.PoiskAvia.Model.Test/" | |
37 } | |
38 ] | |
39 } |