diff --git a/.vscode/launch.json b/.vscode/launch.json index 12ba506..8e7b4b6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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" ] + } ] } \ No newline at end of file