diff --git a/CompilerFolderHandling/New-BcCompilerFolder.ps1 b/CompilerFolderHandling/New-BcCompilerFolder.ps1 index 6ab67c942..9091c8527 100644 --- a/CompilerFolderHandling/New-BcCompilerFolder.ps1 +++ b/CompilerFolderHandling/New-BcCompilerFolder.ps1 @@ -252,6 +252,12 @@ try { } } } + + $symbolsPath = Join-Path $compilerFolder 'symbols' + Write-Host "Enumerating Apps in CompilerFolder $symbolsPath" + $compilerFolderAppFiles = @(Get-ChildItem -Path (Join-Path $symbolsPath '*.app') | Select-Object -ExpandProperty FullName) + GetAppInfo -AppFiles $compilerFolderAppFiles -compilerFolder $compilerFolder -cacheAppinfoPath (Join-Path $symbolsPath 'cache_AppInfo.json') | Out-Null + $compilerFolder } catch { diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 773ffddc3..8f7a988b1 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,6 +1,7 @@ 6.0.18 Use altool from prerelease AL Language extension Display disk free inside container on error +Create AppInfo cache on creating a new compiler folder 6.0.17 Issue 3518 If WinRm is not running on the host, a container couldn't be created