Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes microsoft/AL-Go#1262
Include apps not available online in filesonly containers

Co-authored-by: freddydk <[email protected]>
  • Loading branch information
freddydk and freddydk authored Oct 15, 2024
1 parent abda51e commit 053bab4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions HelperFunctions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1428,6 +1428,12 @@ function CopySymbolsFromContainer {
"C:\Applications.*\Microsoft_AI Test Toolkit_*.app,C:\Applications\BusinessFoundation\source\Microsoft_AI Test Toolkit.app"
)
}
# Include Apps only available offline
"Microsoft_System Application Test Library", "Microsoft_Business Foundation Test Libraries", "Microsoft_Tests-TestLibraries" | ForEach-Object {
$paths += @(
"C:\Applications.*\$($_)_*.app,C:\Applications\BusinessFoundation\source\$($_).app"
)
}
$paths | ForEach-Object {
$appFiles = $_.Split(',')
$appFile = ""
Expand Down
1 change: 1 addition & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Issue 3714 Download-BcNuGetPackageToFolder - throws error when use "-select Exac
Issue 3621 New-AadAppsForBc shows "-includeEmailAadApp is deprecated. Use -includeOtherServicesAadApp instead." but includeOtherServicesAadApp us not setting email permissions
Issue 3718 Business Central Web Client Fails to Load After Updating to Windows 24H2
Issue #3703 Missing Function Download-BcEnvironmentInstalledExtensionToFolder
Fix for issue 1262 in AL-Go for GitHub

6.0.25
Fix issue where generateDependencyArtifact doesn't result in dependencies if useCompilerFolder is true or filesonly containers are used in Run-AlPipeline
Expand Down

0 comments on commit 053bab4

Please sign in to comment.