Apparently the packaging DLL is not availbale in version 15 and earlier.

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
This commit is contained in:
Freddy Kristiansen 2023-12-07 10:47:15 +01:00 коммит произвёл GitHub
Родитель 0bb4fd7db9
Коммит b6b4a67251
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -518,7 +518,9 @@ try {
else {
Add-Type -Path (Join-Path $alcPath Newtonsoft.Json.dll)
Add-Type -Path (Join-Path $alcPath System.Collections.Immutable.dll)
Add-Type -Path (Join-Path $alcPath System.IO.Packaging.dll)
if (Test-Path (Join-Path $alcPath System.IO.Packaging.dll)) {
Add-Type -Path (Join-Path $alcPath System.IO.Packaging.dll)
}
Add-Type -Path (Join-Path $alcPath Microsoft.Dynamics.Nav.CodeAnalysis.dll)
$packageStream = [System.IO.File]::OpenRead($symbolsFile)

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

@ -1164,7 +1164,9 @@ function GetAppInfo {
Add-Type -AssemblyName System.Text.Encoding
LoadDLL -Path (Join-Path $alcDllPath Newtonsoft.Json.dll)
LoadDLL -Path (Join-Path $alcDllPath System.Collections.Immutable.dll)
LoadDLL -Path (Join-Path $alcDllPath System.IO.Packaging.dll)
if (Test-Path (Join-Path $alcDllPath System.IO.Packaging.dll)) {
LoadDLL -Path (Join-Path $alcDllPath System.IO.Packaging.dll)
}
LoadDLL -Path (Join-Path $alcDllPath Microsoft.Dynamics.Nav.CodeAnalysis.dll)
$assembliesAdded = $true
}