From 9941b368b1cc867f14408d1b098367fac2a1e205 Mon Sep 17 00:00:00 2001 From: Freddy Kristiansen Date: Fri, 23 Feb 2024 09:05:47 +0100 Subject: [PATCH] fix nextmajor issue (#3360) Co-authored-by: freddydk --- AppHandling/Get-NavContainerAppInfo.ps1 | 2 +- ReleaseNotes.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AppHandling/Get-NavContainerAppInfo.ps1 b/AppHandling/Get-NavContainerAppInfo.ps1 index 601f9d5f5..1e4585a06 100644 --- a/AppHandling/Get-NavContainerAppInfo.ps1 +++ b/AppHandling/Get-NavContainerAppInfo.ps1 @@ -108,7 +108,7 @@ try { } else { $inArgs += @{ "ServerInstance" = $ServerInstance } - $apps = Get-NAVAppInfo @inArgs | Where-Object { (!$installedOnly) -or ($_.IsInstalled -eq $true) } | ForEach-Object { Get-NAVAppInfo -id $_.AppId -publisher $_.publisher -name $_.name -version $_.Version @inArgs } + $apps = Get-NAVAppInfo @inArgs | Where-Object { (!$installedOnly) -or ($_.IsInstalled -eq $true) } | ForEach-Object { Get-NAVAppInfo -id "$($_.AppId)" -publisher $_.publisher -name $_.name -version $_.Version @inArgs } } if ($sort -ne "None") { diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 0fa02199c..3d5c2b721 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -3,6 +3,7 @@ Issue 3347 Download-BcNuGetPackageToFolder to support package description for ap Support dependency version templates on NuGet packages Issue 3349 NuGet package files section name is wrong when using azure blob storage direct download url Issue 3358 Run-TestsInBcContainer using Windows Authentication doesn't work if exactly one user exists in the tenant +Fix error in Get-BcContainerAppInfo in NextMajor 6.0.6 Include Microsoft_Business Foundation Test Libraries.app when importing test libraries (and tests)