gpt4 book ai didi

c# - 无法加载文件或程序集 'Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'

转载 作者:太空宇宙 更新时间:2023-11-03 15:23:27 35 4
gpt4 key购买 nike

我从 nuget 包安装了 Newtonsoft.Json

但是我遇到了错误

Could not load file or assembly 'Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The system cannot find the file specified.

你能告诉我这是什么原因以及如何解决吗?

最佳答案

检查Package.config,你有8.0版本

    <package id="Newtonsoft.Json" version="8.0.2" targetFramework="net45" />

尝试在 web.config 中添加以下内容

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0"/>
</dependentAssembly>

此外,如果您在项目位置有任何旧版本的 dll,请将其删除

关于c# - 无法加载文件或程序集 'Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36329377/

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