This commit is contained in:
Freddy Kristiansen 2023-05-18 07:59:39 +02:00
Родитель 2caae7b80a
Коммит 71357d9855
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -61,7 +61,7 @@ try {
Write-Host "Downloading Artifacts $($artifactUrl.Split('?')[0])"
$artifactPath = Download-Artifacts $artifactUrl -includePlatform
$ManagementModule = Get-Item -Path (Join-Path $artifactPath[1] "ServiceTier\program files\Microsoft Dynamics NAV\*\Service\Microsoft.Dynamics.Nav.Management.psm1")
$ManagementModule = Get-Item -Path (Join-Path $artifactPath[1] "ServiceTier\program files\Microsoft Dynamics NAV\*\Service\Microsoft.Dynamics.Nav.Management.dll")
if (!($ManagementModule)) {
throw "Unable to locate management module in artifacts"
}
@ -81,7 +81,7 @@ try {
}
Write-Host "Importing PowerShell module $($ManagementModule.FullName)"
Import-Module $ManagementModule.FullName
Import-Module $ManagementModule.FullName -NoClobber
$databaseServerInstance = $databaseServer
if ($databaseInstance) {

Просмотреть файл

@ -1,6 +1,7 @@
5.0.3
Issue #3051 Unable to import .rapidstart file - The property 'Code' cannot be found on this object
Issue #3054 BcContainerHelper doesn't work with Docker 24.0.0. Docker error "WARNING: Ignoring custom format, because both --format and --quiet are set
Issue #3055 Unnecessary administrator check when creating container that uses external database server
5.0.2
Issue #2934 Add setting to containerHelper config: DoNotUseCdnForArtifacts to allow people to grab Artfacts directly from blob storage instead of CDN