From ecc64f9493eea407436e8298312a06f7bf9a556d Mon Sep 17 00:00:00 2001 From: Florian Hopfner <33372796+FH-Inway@users.noreply.github.com> Date: Sun, 6 Oct 2024 21:46:00 +0200 Subject: [PATCH] disable for test with new PSModuleDevelopment version --- build/vsts-prerequisites.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/vsts-prerequisites.ps1 b/build/vsts-prerequisites.ps1 index cdca9692..731e10bd 100644 --- a/build/vsts-prerequisites.ps1 +++ b/build/vsts-prerequisites.ps1 @@ -9,11 +9,12 @@ Install-Module "Pester" -MaximumVersion 4.99.99 -Force -Confirm:$false -Scope Cu # TODO: When issue #645 with PSFramework/PSModuleDevelopment is resolved, this can be removed again. # https://github.com/PowershellFrameworkCollective/psframework/issues/645 +<# Write-Host "Installing PSFramework, maximum version 1.11.343" -ForegroundColor Cyan Install-Module "PSFramework" -MaximumVersion 1.11.343 -Force -Confirm:$false -Scope CurrentUser -AllowClobber -SkipPublisherCheck Write-Host "Installing PSModuleDevelopment, maximum version 2.2.11.168" -ForegroundColor Cyan Install-Module "PSModuleDevelopment" -MaximumVersion 2.2.11.168 -Force -Confirm:$false -Scope CurrentUser -AllowClobber -SkipPublisherCheck - +#> foreach ($item in $modules) {