-
Notifications
You must be signed in to change notification settings - Fork 10
/
RX.Nyss.code-workspace
57 lines (57 loc) · 1.07 KB
/
RX.Nyss.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
{
"folders": [
{
"path": "src/RX.Nyss.Common",
},
{
"path": "src/RX.Nyss.FuncApp",
},
{
"path": "src/RX.Nyss.ReportApi",
},
{
"path": "src/RX.Nyss.ReportFuncApp",
},
{
"path": "src/RX.Nyss.Web",
},
{
"path": "tests",
"name": "Tests"
}
],
"settings": {},
"launch": {
"configurations": [
{
"name": "Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
],
"compounds": [
{
"name": "Run everything",
"configurations": [
{
"folder": "RX.Nyss.ReportApi",
"name": "Run RX.Nyss.ReportApi"
},
{
"folder": "RX.Nyss.Web",
"name": "Run RX.Nyss.Web"
},
{
"folder": "RX.Nyss.FuncApp",
"name": "Run RX.Nyss.FuncApp"
},
{
"folder": "RX.Nyss.ReportFuncApp",
"name": "Run RX.Nyss.ReportFuncApp"
}
]
}
]
}
}