Přesunuto na GitHub https://github.com/ksp/kurz
https://ksp.mff.cuni.cz/kurz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
4 years ago
|
{
|
||
|
// Use IntelliSense to learn about possible attributes.
|
||
|
// Hover to view descriptions of existing attributes.
|
||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": ".NET Core Launch (web)",
|
||
|
"type": "coreclr",
|
||
|
"request": "launch",
|
||
|
"preLaunchTask": "build",
|
||
|
"program": "${workspaceFolder}/Ksp.WebServer/bin/Debug/netcoreapp3.1/Ksp.WebServer.dll",
|
||
|
"args": [],
|
||
|
"cwd": "${workspaceFolder}/Ksp.WebServer",
|
||
|
"stopAtEntry": false,
|
||
|
"serverReadyAction": {
|
||
|
"action": "openExternally",
|
||
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
||
|
},
|
||
|
"env": {
|
||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||
|
},
|
||
|
"sourceFileMap": {
|
||
|
"/Views": "${workspaceFolder}/Views"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": ".NET Core Attach",
|
||
|
"type": "coreclr",
|
||
|
"request": "attach",
|
||
|
"processId": "${command:pickProcess}"
|
||
|
}
|
||
|
]
|
||
|
}
|