当前位置 : 主页 > 手机开发 > 其它 >

nservicebus – “无法加载文件或程序集”/“或其依赖项之一.该模块预计包含一个

来源:互联网 收集:自由互联 发布时间:2021-06-22
我有一个使用SharpSVN dll和NServicebus dll的c#应用程序,它编译得很好但是当它正在执行时(在初始化总线的时候)它会抛出以下错误 Could not load file or assembly ‘file:///C:\Repositories\Repo\hooks\Sharp
我有一个使用SharpSVN dll和NServicebus dll的c#应用程序,它编译得很好但是当它正在执行时(在初始化总线的时候)它会抛出以下错误

Could not load file or assembly ‘file:///C:\Repositories\Repo\hooks\SharpSvn-DB44-20-Win32.dll’ or one of its dependencies. The module was expected to contain an assembly manifest.

我该如何解决上述问题.

预先感谢
Susanta

通过使用toi扫描的显式程序集列表配置NSB,从NServiceBus程序集扫描中排除sharpsvn dll:

Configure.With(“包含消息处理程序的程序集列表”)…

如果您正在使用Saga功能,请确保在列表中包含NServiceBus.core.dll.

希望这可以帮助!

网友评论