Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Apr 2, 2024
1 parent a98151d commit 0e195ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion HelperFunctions.ps1
Expand Up @@ -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) {
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions 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
Expand Down

0 comments on commit 0e195ea

Please sign in to comment.