serverReadyActionで取れたurlをedgeに引き渡す方法が無いか、、、?
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/MyMVC/bin/Debug/net6.0/MyMVC.dll",
"args": [],
"cwd": "${workspaceFolder}/MyMVC",
"console": "internalConsole",
"stopAtEntry": false,
"serverReadyAction": {
"action": "startDebugging",
"name": ".NET Core Debug MyMVC in Edge",
"pattern": "\\bNow listening on:\\s+(http?://\\S+)",
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/MyMVC/Views"
},
},
{
"name": ".NET Core Debug MyMVC in Edge",
"type": "edge",
"request": "launch",
"timeout": 30000,
"port": 9222,
"disableNetworkCache": true,
"url": "https://localhost:5001",
"webRoot": "${workspaceFolder}",
}
]
}
素直にこれか、、、
"action": "debugWithChrome",