博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VS单元测试"未能加载文件或程序集,或它的某一个依赖项"
阅读量:5144 次
发布时间:2019-06-13

本文共 868 字,大约阅读时间需要 2 分钟。

Autofac.Core.DependencyResolutionException : An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = Object (DelegateActivator), Services = [某接口名.Api], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = Shared, Ownership = OwnedByLifetimeScope ---> 未能加载文件或程序集“Autofac, Version=4.8.1.0, Culture=neutral, PublicKeyToken=17863af14b0044da”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040) (See inner exception for details.)

---- System.IO.FileLoadException : 未能加载文件或程序集“Autofac, Version=4.8.1.0, Culture=neutral, PublicKeyToken=17863af14b0044da”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)

 

出现这个问题的原因是Autofac在此项目中有两个版本 4.2.0和4.8.1.0,把4.2.0版卸载之后错误就解决了

参考:https://blog.csdn.net/lwpoor123/article/details/78350212

转载于:https://www.cnblogs.com/wincent98/p/9867248.html

你可能感兴趣的文章
html5新增标签兼容性
查看>>
Android_(控件)使用AlertDialog实现点击Button显示出多选框
查看>>
GridLayout用法
查看>>
java -jar 中文乱码
查看>>
防cc攻击策略
查看>>
vim 编辑器的使用方法
查看>>
[Angular] Updating and resetting FormGroups and FormControls
查看>>
[RxJS] Adding Conditional Logic with Filter
查看>>
Python基础学习
查看>>
document.all的用法详解
查看>>
chmod修改文件权限失败
查看>>
附魔位置详解
查看>>
POJ2096 Collecting Bugs(期望dp)
查看>>
cf519C. A and B and Team Training(找规律)
查看>>
【BZOJ4560】[JLoi2016]字符串覆盖 KMP+状压DP
查看>>
Eclipse debug 调试的几点技巧
查看>>
生僻姓(多音字姓)
查看>>
数值溢出(arithmetic overflow)问题与解决方案
查看>>
dot 语法全介绍
查看>>
Opencv保存摄像头视频&&各种编码器下视频文件占用空间对比
查看>>