From 4fd14b7fc0de8191008bfabb9076e09a61d29989 Mon Sep 17 00:00:00 2001 From: Michael McCormick Date: Thu, 12 Mar 2026 14:04:30 -0500 Subject: [PATCH 1/2] Add notes on PSDependOptions for clarity on user scope installation --- requirements.psd1 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/requirements.psd1 b/requirements.psd1 index 1f345a1..5122d4f 100644 --- a/requirements.psd1 +++ b/requirements.psd1 @@ -1,4 +1,12 @@ @{ + # NOTE: + # PSDependOptions with Target = 'CurrentUser' installs all declared module + # dependencies into the current user's scope rather than system-wide. + # This can impact multi-user development or shared build environments, + # where each user/agent will get their own copy of the dependencies. + PSDependOptions = @{ + Target = 'CurrentUser' + } 'InvokeBuild' = @{ 'Version' = '5.14.22' 'Repository' = 'PSGallery' From c305281d1ed0bbc9f1bbe457a73d2a167ed21956 Mon Sep 17 00:00:00 2001 From: Michael McCormick Date: Thu, 12 Mar 2026 14:08:04 -0500 Subject: [PATCH 2/2] Remove deprecated GitHub Copilot extension from recommendations --- .vscode/extensions.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index c0c6f41..6ec61a5 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,5 @@ { "recommendations": [ - "GitHub.copilot", "GitHub.copilot-chat", // PowerShell extension for VS Code "ms-vscode.powershell",