首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >未能加载文件或程序集'System.Runtime.InteropServices‘

未能加载文件或程序集'System.Runtime.InteropServices‘
EN

Stack Overflow用户
提问于 2019-04-01 14:46:33
回答 1查看 1.7K关注 0票数 1

我在我的.NetFramework 4.6.2项目中引用了一个针对.NetStandard和.NetFramework的nuget包。作为依赖项,此nuget包安装了System.Runtime.InteropServices包。但是现在,当我试图通过浏览器访问我的服务时,我得到了这个错误:Could not load file or assembly 'System.Runtime.InteropServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

花了3个多小时来尝试修复这个one.Anyone?

这就是我引用的nuget包:https://github.com/wavefrontHQ/wavefront-opentracing-sdk-csharp

下面是我的Web.config的样子:

代码语言:javascript
运行
复制
        <assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
      </dependentAssembly>
EN

Stack Overflow用户

发布于 2019-04-01 15:12:34

您可以尝试删除下面的web.config条目。

代码语言:javascript
运行
复制
<dependentAssembly>
 <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
 <bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>

编辑:一些用户确认这种方法是从Could not load file or assembly 'System.Runtime.InteropServices.RuntimeInformation开始工作的

票数 2
EN
查看全部 1 条回答
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/55449399

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档