UNPKG

2.56 kBJSONView Raw
1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "name":".NET Core Docker Launch (web)",
6 "type": "coreclr",
7 "request": "launch",
8 "preLaunchTask": "composeForDebug",
9 "cwd": "/app",
10 "program": "/app/MonadicComponents.dll",
11 "sourceFileMap": {
12 "/app": "${workspaceRoot}"
13 },
14
15 "launchBrowser": {
16 "enabled": true,
17 "args": "${auto-detect-url}",
18 "windows": {
19 "command": "cmd.exe",
20 "args": "/C start ${auto-detect-url}"
21 },
22 "osx": {
23 "command": "open"
24 },
25 "linux": {
26 "command": "xdg-open"
27 }
28 },
29
30 "pipeTransport": {
31 "pipeProgram": "/bin/bash",
32 "pipeCwd": "${workspaceRoot}",
33 "pipeArgs": [ "-c", "./dockerTask.sh startDebugging" ],
34 "windows": {
35 "pipeProgram": "${env.windir}\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
36 "pipeCwd": "${workspaceRoot}",
37 "pipeArgs": [ ".\\dockerTask.ps1", "-StartDebugging" ]
38 }
39 }
40 },
41 {
42 "name": ".NET Core Launch (web)",
43 "type": "coreclr",
44 "request": "launch",
45 "preLaunchTask": "build",
46 "program": "${workspaceRoot}/bin/Debug/netcoreapp1.1/MonadicComponents.dll",
47 "args": [],
48 "cwd": "${workspaceRoot}",
49 "stopAtEntry": false,
50 "internalConsoleOptions": "openOnSessionStart",
51 "launchBrowser": {
52 "enabled": true,
53 "args": "${auto-detect-url}",
54 "windows": {
55 "command": "cmd.exe",
56 "args": "/C start ${auto-detect-url}"
57 },
58 "osx": {
59 "command": "open"
60 },
61 "linux": {
62 "command": "xdg-open"
63 }
64 },
65 "env": {
66 "ASPNETCORE_ENVIRONMENT": "Development"
67 },
68 "sourceFileMap": {
69 "/Views": "${workspaceRoot}/Views"
70 }
71 },
72 {
73 "name": ".NET Core Attach",
74 "type": "coreclr",
75 "request": "attach",
76 "processId": "${command.pickProcess}"
77 }
78 ]
79}
\No newline at end of file