Mercurial > pub > ImplabNet
comparison .vscode/launch.json @ 267:6b3e5c48131b v3
Working on Unity xml configuration
author | cin |
---|---|
date | Fri, 20 Apr 2018 19:05:12 +0300 |
parents | fa6cbf4d8841 |
children |
comparison
equal
deleted
inserted
replaced
266:254d1f255d87 | 267:6b3e5c48131b |
---|---|
1 { | 1 { |
2 "version": "0.2.0", | 2 "version": "0.2.0", |
3 "configurations": [ | 3 "configurations": [ |
4 | |
5 { | 4 { |
6 "name": "Launch webserver", | 5 "name": ".NET Core Launch (console)", |
7 "type": "mono", | 6 "type": "coreclr", |
8 "request": "launch", | 7 "request": "launch", |
9 "program": "/usr/lib/mono/4.5/xsp4.exe", | 8 "preLaunchTask": "build", |
10 "args":[ | 9 "program": "${workspaceRoot}/Implab.Playground/bin/Debug/netcoreapp2.0/Implab.Playground.dll", |
11 "--root=.", | 10 "args": [ |
12 "--port=8081", | 11 "-f", "netcoreapp2.0" |
13 "-v", | |
14 "--printlog" | |
15 ], | 12 ], |
16 "preLaunchTask": "build", | 13 "cwd": "${workspaceRoot}/Implab.Playground", |
17 "cwd": "${workspaceRoot}/Pallada.PoiskAvia.Web", | 14 "stopAtEntry": false, |
18 "runtimeExecutable": null, | 15 "console": "internalConsole" |
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 } | 16 } |
38 ] | 17 ] |
39 } | 18 } |