forked from VictorTzeng/surging.cloud
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlaunch.json
More file actions
63 lines (63 loc) · 2.14 KB
/
launch.json
File metadata and controls
63 lines (63 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"version": "0.2.0",
"configurations": [
{
"name": "Server",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "ServerBuild",
"program": "${workspaceRoot}/Surging.Services/Surging.Services.Server/bin/Debug/netcoreapp2.0/Surging.Services.Server.dll",
"args": [],
"cwd": "${workspaceRoot}/Surging.Services/Surging.Services.Server",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "Client",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "ClientBuild",
"program": "${workspaceRoot}/Surging.Services/Surging.Services.Client/bin/Debug/netcoreapp2.0/Surging.Services.Client.dll",
"args": [],
"cwd": "${workspaceRoot}/Surging.Services/Surging.Services.Client",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "Web",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Webbuild",
"program": "${workspaceRoot}/Surging.ApiGateway/bin/Debug/netcoreapp2.0/Surging.ApiGateway.dll",
"args": [],
"cwd": "${workspaceRoot}/Surging.ApiGateway",
"stopAtEntry": false,
"launchBrowser": {
"enabled": true,
"args": "${auto-detect-url}",
"windows": {
"command": "cmd.exe",
"args": "/C start ${auto-detect-url}"
},
"osx": {
"command": "open"
},
"linux": {
"command": "xdg-open"
}
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceRoot}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}