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", 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'