本文介绍了“无法加载文件或程序集"/“或其依赖项之一".期望模块包含组装清单.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个使用SharpSVN dll和NServicebus dll的c#应用程序,它可以很好地编译,但是当它执行时(在初始化总线时)会抛出以下错误

I have a c# application which uses SharpSVN dll and NServicebus dll,it compile fine but when it is executing(in the time of initialize the bus) it throw the following error

我该如何解决以上问题.

How can I solve the above problem.

先谢谢苏珊塔

推荐答案

通过为NSB配置一个显式的toi scan程序集来配置NSB,从而从NServiceBus程序集扫描中排除Sharpsvn dll:

Exclude the sharpsvn dlls from the NServiceBus assemblyscanning by configuring NSB with a explicit list of assemblies toi scan:

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

Configure.With("List of your assemblies that contain messagehandlers")...

如果使用的是Saga功能,请确保在列表中包括NServiceBus.core.dll.

Make sure to include NServiceBus.core.dll in the list if you're using the Saga feature.

希望这会有所帮助!

这篇关于“无法加载文件或程序集"/“或其依赖项之一".期望模块包含组装清单.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 00:18