Skip to content

Commit 9941b36

Browse files
authored
fix nextmajor issue (#3360)
Co-authored-by: freddydk <[email protected]>
1 parent f5567f0 commit 9941b36

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

AppHandling/Get-NavContainerAppInfo.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ try {
108108
}
109109
else {
110110
$inArgs += @{ "ServerInstance" = $ServerInstance }
111-
$apps = Get-NAVAppInfo @inArgs | Where-Object { (!$installedOnly) -or ($_.IsInstalled -eq $true) } | ForEach-Object { Get-NAVAppInfo -id $_.AppId -publisher $_.publisher -name $_.name -version $_.Version @inArgs }
111+
$apps = Get-NAVAppInfo @inArgs | Where-Object { (!$installedOnly) -or ($_.IsInstalled -eq $true) } | ForEach-Object { Get-NAVAppInfo -id "$($_.AppId)" -publisher $_.publisher -name $_.name -version $_.Version @inArgs }
112112
}
113113

114114
if ($sort -ne "None") {

ReleaseNotes.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Issue 3347 Download-BcNuGetPackageToFolder to support package description for ap
33
Support dependency version templates on NuGet packages
44
Issue 3349 NuGet package files section name is wrong when using azure blob storage direct download url
55
Issue 3358 Run-TestsInBcContainer using Windows Authentication doesn't work if exactly one user exists in the tenant
6+
Fix error in Get-BcContainerAppInfo in NextMajor
67

78
6.0.6
89
Include Microsoft_Business Foundation Test Libraries.app when importing test libraries (and tests)

0 commit comments

Comments
 (0)