diff --git a/HelperFunctions.ps1 b/HelperFunctions.ps1 index 4a6aa7648..fdd6060a3 100644 --- a/HelperFunctions.ps1 +++ b/HelperFunctions.ps1 @@ -1173,6 +1173,7 @@ function GetAppInfo { "propagateDependencies" = ($manifest.PSObject.Properties.Name -eq 'PropagateDependencies') -and $manifest.PropagateDependencies "dependencies" = @(if($manifest.PSObject.Properties.Name -eq 'dependencies'){$manifest.dependencies | ForEach-Object { @{ "id" = $_.id; "name" = $_.name; "publisher" = $_.publisher; "version" = $_.version }}}) } + Write-Host " (succeeded using altool)" } else { if (!$assembliesAdded) { @@ -1199,8 +1200,9 @@ function GetAppInfo { "platform" = "$($manifest.Platform)" "propagateDependencies" = $manifest.PropagateDependencies } + $packageStream.Close() + Write-Host " (succeeded using codeanalysis)" } - Write-Host " (succeeded)" if ($cacheAppInfoPath) { $appInfoCache | Add-Member -MemberType NoteProperty -Name $path -Value $appInfo $cacheUpdated = $true diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 6dade1d83..403a23c42 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,6 +1,7 @@ 6.0.13 Issue 3452 Error when running Run-AlValidation : Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. Issue 3454 DockerDo : Cannot bind argument to parameter 'imageName' because it is an empty string. +Issue 3354 Regression : Compile Folder removal of symbols folder fails: The process cannot access the file 6.0.12 Issue 3432 New-BcContainerWizard stopped working after generic images with ltsc2016, ltsc2019 and ltsc2022 was introduced