Oh!Super164 取り留めのない日記のような

2023/7/22 土曜日

launch.json

Filed under: 備忘録 — pecos @ 17:39:24

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",

コメントはまだありません »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment

Powered by WordPress