From 02481f8e1498984e0a18c4e97f40bf6f4f660527 Mon Sep 17 00:00:00 2001 From: Callum Whyte Date: Tue, 19 Oct 2021 10:47:58 +0100 Subject: [PATCH] requireExactSource needs to be disabled in order to properly attach to process and debug Umbraco source in VS Code / Codespaces (#11367) --- .vscode/launch.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 1c7f8b11d781..ab97269d1f94 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,6 +14,7 @@ "args": [], "cwd": "${workspaceFolder}/src/Umbraco.Web.UI", "stopAtEntry": false, + "requireExactSource": false, // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser "serverReadyAction": { "action": "openExternally",