From cada9c012e3ebc357c4ed37420047537c460a719 Mon Sep 17 00:00:00 2001 From: Callum Whyte Date: Wed, 13 Oct 2021 13:41:56 +0000 Subject: [PATCH] requireExactSource needs to be disabled in order to properly attach to process and debug Umbraco source in VS Code / Codespaces --- .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",