Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/microsoft/BCApps into priva…
Browse files Browse the repository at this point in the history
…te/wenjiefan/slice-545996
  • Loading branch information
wenjiefan committed Dec 4, 2024
2 parents 1eeef33 + 719efbc commit fc174d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/AL-Go-Settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"runs-on": "windows-latest",
"cacheImageName": "",
"UsePsSession": false,
"artifact": "https://bcinsider-fvh2ekdjecfjd6gk.b02.azurefd.net/sandbox/26.0.27451.0/base",
"artifact": "https://bcinsider-fvh2ekdjecfjd6gk.b02.azurefd.net/sandbox/26.0.27531.0/base",
"country": "base",
"useProjectDependencies": true,
"repoVersion": "26.0",
Expand Down
4 changes: 2 additions & 2 deletions build/Packages.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"Microsoft.Dynamics.BusinessCentral.Translations": {
"Version": "26.0.20241125.4",
"Version": "26.0.20241202.6",
"Source": "NuGet.org"
},
"AppBaselines-BCArtifacts": {
"Version": "25.2.27190.0",
"Version": "25.2.27518.0",
"Source": "BCArtifacts",
"_comment": "Used to fetch app baselines from BC artifacts"
}
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/EnlistmentHelperFunctions.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ function Get-PackageLatestVersion() {
if ($PackageName -eq "AppBaselines-BCArtifacts") {
# For app baselines, use the previous minor version as minimum version
if ($majorMinorVersion.Minor -gt 0) {
$minimumVersion = "$($majorMinorVersion.Major).$($majorMinorVersion.Minor - 1)"
$minimumVersion = "$($majorMinorVersion.Major).$([Math]::Min($majorMinorVersion.Minor - 1, 5))" # limit the minor version to 5, as it is the maximum minor version for SaaS
} else {
$minimumVersion = "$($majorMinorVersion.Major - 1)"
}
Expand Down

0 comments on commit fc174d5

Please sign in to comment.