Skip to content

Commit 0c1ea3a

Browse files
authored
Merge branch 'develop' into feature/authorization-language
2 parents 3bb1315 + 62ebcc1 commit 0c1ea3a

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

.vscode/launch.json

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
{
22
"version": "0.2.0",
33
"configurations": [
4-
{
5-
"name": "TesterApp Launch",
6-
"type": "coreclr",
7-
"request": "launch",
8-
"preLaunchTask": "Build",
9-
"program": "${workspaceFolder}/src/TesterApp/bin/Debug/net6.0/TesterApp.dll",
10-
"cwd": "${workspaceFolder}/src/TesterApp",
11-
"internalConsoleOptions": "openOnSessionStart",
12-
"env":
134
{
14-
"ASPNETCORE_ENVIRONMENT": "Development"
5+
"name": "TesterApp Launch",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "Build",
9+
"program": "${workspaceFolder}/src/TesterApp/bin/Debug/net6.0/TesterApp.dll",
10+
"cwd": "${workspaceFolder}/src/TesterApp",
11+
"internalConsoleOptions": "openOnSessionStart",
12+
"serverReadyAction": {
13+
"action": "openExternally",
14+
"pattern": "Now listening on",
15+
"uriFormat": "http://localhost:5000/swagger/index.html"
16+
},
17+
"env": {
18+
"ASPNETCORE_ENVIRONMENT": "Development"
19+
}
1520
}
16-
}]
21+
]
1722
}

0 commit comments

Comments
 (0)