From b935275fd9180f4f31f00c3dfb35d7f394f2e127 Mon Sep 17 00:00:00 2001 From: Umar Bolatov Date: Tue, 11 Jan 2022 21:11:15 -0800 Subject: [PATCH] Adjust VSCode browser launch regex VSCode stopped launching BTCPay in a new browser tab after this commit: https://github.com/btcpayserver/btcpayserver/commit/ab3aab9c226fee9df9065f23333ffccbadae70ea#diff-2baea61aec1a18e36f951b0060f693c9bd10d9610e2681d36277e79d101005bcR66 --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index cbf8e0ac2..522f5e845 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,7 +17,7 @@ // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser "serverReadyAction": { "action": "openExternally", - "pattern": "\\bListening on\\s+(https?://\\S+)" + "pattern": "\\bNow listening on:\\s+(https?://\\S+)" }, "env": { "ASPNETCORE_ENVIRONMENT": "Development"