diff --git a/AppHandling/Copy-AlSourceFiles.ps1 b/AppHandling/Copy-AlSourceFiles.ps1 index 5e37fbab4..fbd746738 100644 --- a/AppHandling/Copy-AlSourceFiles.ps1 +++ b/AppHandling/Copy-AlSourceFiles.ps1 @@ -129,7 +129,7 @@ try { if ($type -eq "report") { 0..($content.Count-1) | % { $line = $content[$_] - if ($line.Trim() -like "RDLCLayout = '*';" -or $line.Trim() -like "WordLayout = '*';") { + if ($line.Trim() -like "RDLCLayout = '*';" -or $line.Trim() -like "WordLayout = '*';" -or $line.Trim() -like "LayoutFile = '*';") { $startIdx = $line.IndexOf("'")+1 $endIdx = $line.LastIndexOf("'") $layoutFilename = $line.SubString($startIdx, $endIdx-$startIdx) diff --git a/AppHandling/Run-AlCops.ps1 b/AppHandling/Run-AlCops.ps1 index 19d263b4b..a02118b7c 100644 --- a/AppHandling/Run-AlCops.ps1 +++ b/AppHandling/Run-AlCops.ps1 @@ -156,7 +156,7 @@ function Run-AlCops { } } - Extract-AppFileToFolder -appFilename $appFile -appFolder $tmpFolder -generateAppJson -excludeRuntimeProperty -latestSupportedRuntimeVersion $latestSupportedRuntimeVersion + Extract-AppFileToFolder -appFilename $appFile -appFolder $tmpFolder -generateAppJson -latestSupportedRuntimeVersion $latestSupportedRuntimeVersion $appJson = [System.IO.File]::ReadAllLines((Join-Path $tmpFolder "app.json")) | ConvertFrom-Json $ruleset = $null diff --git a/BC.HelperFunctions.ps1 b/BC.HelperFunctions.ps1 index bd7e4ce2d..74a2e7573 100644 --- a/BC.HelperFunctions.ps1 +++ b/BC.HelperFunctions.ps1 @@ -35,8 +35,8 @@ function Get-ContainerHelperConfig { "useSharedEncryptionKeys" = $true "DOCKER_SCAN_SUGGEST" = $false "psSessionTimeout" = 0 - "artifactDownloadTimeout" = 300 - "defaultDownloadTimeout" = 100 + "artifactDownloadTimeout" = 600 + "defaultDownloadTimeout" = 120 "baseUrl" = "https://businesscentral.dynamics.com" "apiBaseUrl" = "https://api.businesscentral.dynamics.com" "mapCountryCode" = [PSCustomObject]@{ diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index ee7ff65bb..9148b01df 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -4,6 +4,9 @@ Display disk free inside container on error Create AppInfo cache on creating a new compiler folder Add support for using `TestCodeunitRangeFilter` field in `Run-TestsInBcContainer` and `Get-TestsFromBcContainer` Issue 3206 Auto-Consent the Permissions requested after using New-AadAppsForBc +Issue 3544 Copy-AlSourceFiles.ps1 does not copy RDLC and DOCS Files with the new report layout definition +Issue 3550 Run-AlValidation is checking wrong runtime version +Issue 3555 Increase default timeout 6.0.17 Issue 3518 If WinRm is not running on the host, a container couldn't be created