|
1 | 1 | { |
2 | | - "version": "0.2.0", |
3 | | - "configurations": [ |
4 | | - { |
5 | | - "name": "Aspire", |
6 | | - "type": "coreclr", |
7 | | - "request": "launch", |
8 | | - "preLaunchTask": "build", |
9 | | - "program": "${workspaceFolder}/src/Exceptionless.AppHost/bin/Debug/net9.0/Exceptionless.AppHost.dll", |
10 | | - "args": [], |
11 | | - "cwd": "${workspaceFolder}/src/Exceptionless.AppHost", |
12 | | - "stopAtEntry": false, |
13 | | - "serverReadyAction": { |
14 | | - "action": "openExternally", |
15 | | - "pattern": "\\bNow listening on:\\s+(https?://\\S+)" |
16 | | - }, |
17 | | - "env": { |
18 | | - "AppMode": "Development" |
19 | | - } |
20 | | - }, |
21 | | - { |
22 | | - "name": "Web", |
23 | | - "type": "coreclr", |
24 | | - "request": "launch", |
25 | | - "preLaunchTask": "build", |
26 | | - "program": "${workspaceFolder}/src/Exceptionless.Web/bin/Debug/net9.0/Exceptionless.Web.dll", |
27 | | - "args": [], |
28 | | - "cwd": "${workspaceFolder}/src/Exceptionless.Web", |
29 | | - "stopAtEntry": false, |
30 | | - "serverReadyAction": { |
31 | | - "action": "openExternally", |
32 | | - "pattern": "\\bNow listening on:\\s+(https?://\\S+)" |
33 | | - }, |
34 | | - "env": { |
35 | | - "AppMode": "Development" |
36 | | - } |
37 | | - }, |
38 | | - { |
39 | | - "name": "Job", |
40 | | - "type": "coreclr", |
41 | | - "request": "launch", |
42 | | - "preLaunchTask": "build", |
43 | | - "program": "${workspaceFolder}/src/Exceptionless.Job/bin/Debug/net9.0/Exceptionless.Job.dll", |
44 | | - "args": [], |
45 | | - "cwd": "${workspaceFolder}", |
46 | | - "stopAtEntry": false, |
47 | | - "console": "internalConsole", |
48 | | - "env": { |
49 | | - "AppMode": "Development" |
50 | | - } |
51 | | - }, |
52 | | - { |
53 | | - "name": ".NET Core Attach", |
54 | | - "type": "coreclr", |
55 | | - "request": "attach" |
56 | | - }, |
57 | | - { |
58 | | - "name": "frontend: Attach to Chrome", |
59 | | - "port": 9222, |
60 | | - "request": "attach", |
61 | | - "type": "chrome", |
62 | | - "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp" |
63 | | - }, |
64 | | - { |
65 | | - "name": "frontend: Attach to Edge", |
66 | | - "port": 9222, |
67 | | - "request": "attach", |
68 | | - "type": "msedge", |
69 | | - "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp" |
70 | | - }, |
71 | | - { |
72 | | - "type": "msedge", |
73 | | - "request": "launch", |
74 | | - "name": "frontend: Web (Edge)", |
75 | | - "url": "http://localhost:5173/next", |
76 | | - "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
77 | | - "preLaunchTask": "npm run dev" |
78 | | - }, |
79 | | - { |
80 | | - "type": "msedge", |
81 | | - "request": "launch", |
82 | | - "name": "frontend: Web Dev Api (Edge)", |
83 | | - "url": "http://localhost:5173/next", |
84 | | - "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
85 | | - "preLaunchTask": "npm run dev:api" |
86 | | - }, |
87 | | - { |
88 | | - "type": "msedge", |
89 | | - "request": "launch", |
90 | | - "name": "frontend: Storybook (Edge)", |
91 | | - "url": "http://localhost:6006", |
92 | | - "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
93 | | - "preLaunchTask": "npm run storybook" |
94 | | - }, |
95 | | - { |
96 | | - "type": "chrome", |
97 | | - "request": "launch", |
98 | | - "name": "frontend: Web (Chrome)", |
99 | | - "url": "http://localhost:5173/next", |
100 | | - "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
101 | | - "preLaunchTask": "npm run dev" |
102 | | - }, |
103 | | - { |
104 | | - "type": "chrome", |
105 | | - "request": "launch", |
106 | | - "name": "frontend: Web Dev Api (Chrome)", |
107 | | - "url": "http://localhost:5173/next", |
108 | | - "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
109 | | - "preLaunchTask": "npm run dev:api" |
110 | | - }, |
111 | | - { |
112 | | - "type": "chrome", |
113 | | - "request": "launch", |
114 | | - "name": "frontend: Storybook (Chrome)", |
115 | | - "url": "http://localhost:6006", |
116 | | - "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
117 | | - "preLaunchTask": "npm run storybook" |
118 | | - } |
119 | | - ] |
| 2 | + "version": "0.2.0", |
| 3 | + "configurations": [ |
| 4 | + { |
| 5 | + "type": "aspire", |
| 6 | + "request": "launch", |
| 7 | + "name": "Aspire", |
| 8 | + "program": "${workspaceFolder}/src/Exceptionless.AppHost/Exceptionless.AppHost.csproj" |
| 9 | + }, |
| 10 | + { |
| 11 | + "name": "Web", |
| 12 | + "type": "coreclr", |
| 13 | + "request": "launch", |
| 14 | + "preLaunchTask": "build", |
| 15 | + "program": "${workspaceFolder}/src/Exceptionless.Web/bin/Debug/net10.0/Exceptionless.Web.dll", |
| 16 | + "args": [], |
| 17 | + "cwd": "${workspaceFolder}/src/Exceptionless.Web", |
| 18 | + "stopAtEntry": false, |
| 19 | + "serverReadyAction": { |
| 20 | + "action": "openExternally", |
| 21 | + "pattern": "\\bNow listening on:\\s+(https?://\\S+)" |
| 22 | + }, |
| 23 | + "env": { |
| 24 | + "AppMode": "Development" |
| 25 | + } |
| 26 | + }, |
| 27 | + { |
| 28 | + "name": "Job", |
| 29 | + "type": "coreclr", |
| 30 | + "request": "launch", |
| 31 | + "preLaunchTask": "build", |
| 32 | + "program": "${workspaceFolder}/src/Exceptionless.Job/bin/Debug/net10.0/Exceptionless.Job.dll", |
| 33 | + "args": [], |
| 34 | + "cwd": "${workspaceFolder}", |
| 35 | + "stopAtEntry": false, |
| 36 | + "console": "internalConsole", |
| 37 | + "env": { |
| 38 | + "AppMode": "Development" |
| 39 | + } |
| 40 | + }, |
| 41 | + { |
| 42 | + "name": ".NET Core Attach", |
| 43 | + "type": "coreclr", |
| 44 | + "request": "attach" |
| 45 | + }, |
| 46 | + { |
| 47 | + "name": "frontend: Attach to Chrome", |
| 48 | + "port": 9222, |
| 49 | + "request": "attach", |
| 50 | + "type": "chrome", |
| 51 | + "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp" |
| 52 | + }, |
| 53 | + { |
| 54 | + "name": "frontend: Attach to Edge", |
| 55 | + "port": 9222, |
| 56 | + "request": "attach", |
| 57 | + "type": "msedge", |
| 58 | + "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp" |
| 59 | + }, |
| 60 | + { |
| 61 | + "type": "msedge", |
| 62 | + "request": "launch", |
| 63 | + "name": "frontend: Web (Edge)", |
| 64 | + "url": "http://localhost:5173/next", |
| 65 | + "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
| 66 | + "preLaunchTask": "npm run dev" |
| 67 | + }, |
| 68 | + { |
| 69 | + "type": "msedge", |
| 70 | + "request": "launch", |
| 71 | + "name": "frontend: Web Dev Api (Edge)", |
| 72 | + "url": "http://localhost:5173/next", |
| 73 | + "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
| 74 | + "preLaunchTask": "npm run dev:api" |
| 75 | + }, |
| 76 | + { |
| 77 | + "type": "msedge", |
| 78 | + "request": "launch", |
| 79 | + "name": "frontend: Storybook (Edge)", |
| 80 | + "url": "http://localhost:6006", |
| 81 | + "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
| 82 | + "preLaunchTask": "npm run storybook" |
| 83 | + }, |
| 84 | + { |
| 85 | + "type": "chrome", |
| 86 | + "request": "launch", |
| 87 | + "name": "frontend: Web (Chrome)", |
| 88 | + "url": "http://localhost:5173/next", |
| 89 | + "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
| 90 | + "preLaunchTask": "npm run dev" |
| 91 | + }, |
| 92 | + { |
| 93 | + "type": "chrome", |
| 94 | + "request": "launch", |
| 95 | + "name": "frontend: Web Dev Api (Chrome)", |
| 96 | + "url": "http://localhost:5173/next", |
| 97 | + "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
| 98 | + "preLaunchTask": "npm run dev:api" |
| 99 | + }, |
| 100 | + { |
| 101 | + "type": "chrome", |
| 102 | + "request": "launch", |
| 103 | + "name": "frontend: Storybook (Chrome)", |
| 104 | + "url": "http://localhost:6006", |
| 105 | + "webRoot": "${workspaceFolder}/src/Exceptionless.Web/ClientApp", |
| 106 | + "preLaunchTask": "npm run storybook" |
| 107 | + } |
| 108 | + ] |
120 | 109 | } |
0 commit comments