gpt4 book ai didi

c# - 无法为 .Net 标准库 (System.Text.Json) 加载程序集

转载 作者:行者123 更新时间:2023-12-03 15:09:50 30 4
gpt4 key购买 nike

我正在编写一个将由二进制 PowerShell 模块使用的 .Net Standard 2.0 库。该库基本上是一个 API 客户端,其中包含许多用于处理 JSON 响应的类。在尝试反序列化字符串之前,我确认 API 提供的 JSON 编码字符串没有问题。

原来是 compatible在使用 NuGet 包时使用 .Net Standard 2.0,我想我会尝试切换到 System.Text.Json,而不是使用 NewtonSoft。但是,它似乎没有在某些平台上所需的特定程序集的版本。

我的环境:

window 10
PowerShell 5.1 桌面版
.Net 框架 4.8
PowerShell 核心 6.2.2
dotnet 版本 3.0.100

PowerShell 桌面 ,当它必须反序列化任何东西时,我会遇到以下问题:

PS dir:\> Import-Module '.\file.dll'
PS dir:\> [namespace.class]::TestMethod($string, $anotherString) # Test method to return string
{"attribute":"value"}
PS dir:\> [namespace.class]::Method($string, $anotherString) # Same as above, but uses System.Text.Json to deserialise
Could not load file or assembly 'System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. The system
cannot find the file specified.

# System.Buffers.dll is with the System.Text.Json package, but seems to be the wrong version
PS dir:\> (Get-Item .\System.Buffers.dll).VersionInfo.FileVersion
4.6.26515.06
PS dir:\> [System.Reflection.Assembly]::LoadFile("$pwd\System.Buffers.dll").GetName().Version

Major Minor Build Revision
----- ----- ----- --------
4 0 3 0

PowerShell 核心 另一个程序集/文件也有同样的异常(exception)。

PS dir:\> Import-Module '.\file.dll'
PS dir:\> [namespace.class]::Method($string, $anotherString)
"Could not load file or assembly 'System.Text.Encodings.Web, Version=4.0.5.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. Could not find or load a specific file. (Exception from HRESULT: 0x80131621)"

#System.Text.Encodings.Web.dll is with the System.Text.Json package and appears to be the required version...
PS dir:\> (Get-Item .\System.Text.Encodings.Web.dll).VersionInfo.FileVersion
4.700.19.56404
[System.Reflection.Assembly]::LoadFile("$pwd\System.Text.Encodings.Web.dll").GetName().Version

Major Minor Build Revision
----- ----- ----- --------
4 0 5 0

有人对我如何在不切换到 Newtonsoft 的 JSON 包的情况下解决这个问题有任何建议吗?从 System.Text.Json 4.7.1 回退到 4.7.0 或 4.6.0 会引入其他程序集的问题,这些程序集是 System.Text.Json 的 NuGet 包的一部分。我已阅读建议 here ,但我要么不能在这里应用它,要么我根本不明白。

提前致谢。如果您需要更多信息,请告诉我,我会提供。

编辑

我按照 Gokhan 的建议更新了 csproj

<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>

这在 appName.dll.config 中生成了以下代码

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.6.0" newVersion="4.0.6.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>

所以所有绑定(bind)重定向的自动生成都不起作用,如上所述,至少还有两个不起作用。我会尝试手动创建它们,但据我所知,现在没有源配置文件可以放入它们。如果有人对此有任何指导,我将不胜感激。

最佳答案

您遇到的问题是因为您的库面向 .NET Standard,它不是一个可运行的框架,因此在尝试使用 Powershell 之类的模型加载它时有时会出现问题。让我试着多解释一下发生了什么。

.NET Standard 只是一个 API 外围规范,因此基本上只是一组 API,它们将保证存在并能够在任何实现该版本 .NET Standard 的可运行框架上运行。这意味着,如果您有一个以 .NET Standard 为目标的库,则没有真正的方法可以以保证在任何可运行框架上运行的方式发布该库及其所有依赖项,因为每个可运行框架可能需要额外的依赖项让您的库正确加载。从控制台应用程序(通过项目引用或通过 NuGet 包)引用 .NET Standard 库时,控制台应用程序将知道它的目标是哪个可运行框架,因此它将能够获取您的库所需的正确依赖项集在运行时,但您的方案的问题是这个控制台应用程序并不真正存在,因为您是从 powershell 加载它(在某种意义上基本上是控制台应用程序)。由于所有这些,为了在运行时成功加载库,您必须执行引用库的控制台应用程序将执行的工作,并根据运行时选择正确的引用来携带库加载它。对于 powershell,基本上有两种可能的运行时(用于 powershell 核心的 .NET Core 和用于 Powershell 的 .NET Framework)。

解决问题的最简单方法是创建一个虚拟控制台应用程序:从命令提示符运行 dotnet new console -n dummyConsoleApp , 将目标框架设置为 netcoreapp2.0 (假设您在 powershell 内核上运行,如果您在完整的 powershell 上运行,则将其设置为 net46 )。然后将项目引用添加到您的库中,例如 <ProjectReference Include="...<FullPathtoYourProject>\File.csproj" />然后从命令提示符 dotnet publish -r win-x64 运行它应该在您的 bin 文件夹中创建一个发布目录,该目录将包含您的应用程序将在运行时使用的所有程序集。之后,尝试再次加载您的 File.dll,但这次是从该发布文件夹加载,这次您应该成功,因为该发布文件夹将具有运行 powershell 运行时所需的所有正确依赖项。如果由于某种原因这对您不起作用,请随时在 https://github.com/dotnet/runtime 中记录有关此问题 repo 并标记我(@joperezr),我很乐意帮助您诊断和解决问题。

关于c# - 无法为 .Net 标准库 (System.Text.Json) 加载程序集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60436841/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com