From fc25dccd3428e82563d846cc74e496ee9b3906d2 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Mon, 4 May 2026 23:18:21 +0200 Subject: [PATCH] Adding launch profile which builds in the VSCode way, so by generating a PSD1 and copying it over to the local profile folder instead of directly loading the DLLs from the debug folder --- src/Commands/Properties/launchSettings.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Commands/Properties/launchSettings.json b/src/Commands/Properties/launchSettings.json index ac107e695..ace4584d2 100644 --- a/src/Commands/Properties/launchSettings.json +++ b/src/Commands/Properties/launchSettings.json @@ -5,6 +5,12 @@ "executablePath": "pwsh", "commandLineArgs": "-NoExit -NoProfile -Command Import-Module $(ProjectDir)/_debug/debug.ps1", "workingDirectory": "$(ProjectDir)\\..\\..\\" + }, + "PnP.PowerShell (VSCode style)": { + "commandName": "Executable", + "executablePath": "pwsh", + "commandLineArgs": "-NoExit -NoProfile -File $(SolutionDir)/../build/Build-Debug.ps1", + "workingDirectory": "$(ProjectDir)\\..\\..\\" } } } \ No newline at end of file