Incognito Edge

This commit is contained in:
Mike Phares 2023-01-13 22:43:50 -07:00
parent b445f7e680
commit 8be8daaa3c

20
.vscode/launch.json vendored
View File

@ -17,7 +17,8 @@
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
"uriFormat": "%s/swagger/index.html"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
@ -42,5 +43,22 @@
"--verbose"
]
},
{
"name": "Incognito Edge",
"type": "msedge",
"request": "launch",
"runtimeArgs": [
"--profile-directory=Default",
"-inprivate"
],
"url": "https://localhost:7130/swagger/index.html",
"preLaunchTask": "build"
}
],
"compounds": [
{
"name": "* Watch Server - Incognito Edge",
"configurations": [ "Watch Server", "Incognito Edge" ]
}
]
}