forked from revenz/FileFlows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.code-workspace
75 lines (74 loc) · 1.47 KB
/
workspace.code-workspace
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
64
65
66
67
68
69
70
71
72
73
74
75
{
"folders": [
{
"path": "Client"
},
{
"path": "FileFlowTests"
},
{
"path": "FlowRunner"
},
{
"path": "Node"
},
{
"path": "Server"
},
{
"path": "ServerShared"
},
{
"path": "Shared"
},
{
"path": ".vscode"
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Server Build",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Server Build",
"program": "${workspaceFolder}/Server/bin/Debug/net6.0/Server.dll",
"args": [],
"cwd": "${workspaceFolder}/Server",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"cwd": "${workspaceFolder}/Server",
"ASPNETCORE_URLS": "http://localhost:6868"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Server/Views"
},
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "Client Build",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Client Build",
"program": "${workspaceFolder}/Client/bin/Debug/net6.0/Client.dll",
"args": [],
"cwd": "${workspaceFolder}/Client",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"cwd": "${workspaceFolder}/Client",
"ASPNETCORE_URLS": "http://localhost:6969"
},
"stopAtEntry": false,
"console": "internalConsole"
}
],
"compounds": [
{
"name": "Server/Client Debug",
"configurations": ["Client Build", "Server Build"]
}
]
}
}