Skip to content

Commit f2d29bc

Browse files
committed
Added aspire launch task
1 parent 426866a commit f2d29bc

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.vscode/launch.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,28 @@
11
{
22
"version": "0.2.0",
33
"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+
},
421
{
522
"name": "Web",
623
"type": "coreclr",
724
"request": "launch",
825
"preLaunchTask": "build",
9-
// If you have changed target frameworks, make sure to update the program path.
1026
"program": "${workspaceFolder}/src/Exceptionless.Web/bin/Debug/net9.0/Exceptionless.Web.dll",
1127
"args": [],
1228
"cwd": "${workspaceFolder}/src/Exceptionless.Web",
@@ -24,7 +40,6 @@
2440
"type": "coreclr",
2541
"request": "launch",
2642
"preLaunchTask": "build",
27-
// If you have changed target frameworks, make sure to update the program path.
2843
"program": "${workspaceFolder}/src/Exceptionless.Job/bin/Debug/net9.0/Exceptionless.Job.dll",
2944
"args": [],
3045
"cwd": "${workspaceFolder}",

0 commit comments

Comments
 (0)