在NServiceBus 6中进行程序集扫描时出现异常

时间:2016-07-21 14:03:11

标签: c# asp.net nservicebus

我正在构建一个引用类库项目的ASP.NET Core应用程序。此类库尝试设置端点。由于我已经包含了Microsoft.AspNetCore.Identity.EntityFrameworkCore,因此我得到以下异常:

{System.IO.FileLoadException: Die Datei oder Assembly "System.Interactive.Async, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" oder eine Abhängigkeit davon wurde nicht gefunden. Die gefundene Manifestdefinition der Assembly stimmt nicht mit dem Assemblyverweis überein. (Ausnahme von HRESULT: 0x80131040)
Dateiname: "System.Interactive.Async, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
   bei System.Signature.GetSignature(Void* pCorSig, Int32 cCorSig, RuntimeFieldHandleInternal fieldHandle, IRuntimeMethodInfo methodHandle, RuntimeType declaringType)
   bei System.Reflection.RuntimePropertyInfo.get_Signature()
   bei System.Reflection.RuntimePropertyInfo.get_PropertyType()
   bei NServiceBus.Conventions.<>c.<.ctor>b__21_2(PropertyInfo p)
   bei NServiceBus.Conventions.IsEncryptedProperty(PropertyInfo property)

=== Zustandsinformationen vor Bindung ===
LOG: DisplayName = System.Interactive.Async, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
 (Fully-specified)
LOG: Appbase = file:///D:/enio_tfs/enio.InvoiceR/Main/enio.InvoiceR.WebApp/bin/Debug/net461/win7-x64/
LOG: Ursprünglicher PrivatePath = NULL
Aufruf von Assembly : EntityFramework.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60.
===
LOG: Diese Bindung startet im default-Load-Kontext.
LOG: Die Anwendungskonfigurationsdatei wird verwendet: D:\enio_tfs\enio.InvoiceR\Main\enio.InvoiceR.WebApp\bin\Debug\net461\win7-x64\enio.InvoiceR.WebApp.exe.Config
LOG: Die Hostkonfigurationsdatei wird verwendet: 
LOG: Die Computerkonfigurationsdatei von C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config wird verwendet.
LOG: Verweis nach der Richtlinie: System.Interactive.Async, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
LOG: Download von neuem URL file:///D:/enio_tfs/enio.InvoiceR/Main/enio.InvoiceR.WebApp/bin/Debug/net461/win7-x64/System.Interactive.Async.DLL.
WRN: Der Vergleich des Assemblynamens führte zum Konflikt: Hauptversion.
ERR: Das Setup der Assembly konnte nicht abgeschlossen werden (hr = 0x80131040). Die Suche wurde beendet.
}

当我尝试启动端点(Endpoint.Start ...)

时会发生此异常

我认为当我从扫描中排除程序集System.Interactive.Async.dll时,异常可能会消失我更改了端点配置代码:

endpointConfiguration.ExcludeAssemblies("System.Interactive.Async.dll", "System.Interactive.Async");

但不幸的是,这没有效果。例外情况保持不变。

顺便说一句,现在我有谁可以排除所有Microsoft。*和System。* DLL? ASP.NET Core将所有这些DLL放入bin目录中。因此,我有超过100个这样的DLL,初始扫描需要很长时间。

1 个答案:

答案 0 :(得分:1)

不幸的是,我的语言专业知识是糟糕的英语和糟糕的c#,所以我假设你得到的类似错误与扫描试图加载程序集及其依赖树和失败一样。要回答关于在nServiceBus 6+中排除文件的问题,我个人认为他们通过删除AllAssemblies排除功能给我们带来了不利,您可以执行以下操作。

var endpointConfiguration = new EndpointConfiguration("MyEndpoint");
var fullPath = Assembly.GetAssembly(typeof(ServiceMain)).Location;
var directory = new DirectoryInfo(Path.GetDirectoryName(fullPath));
var files = directory.GetFiles("*.dll", SearchOption.TopDirectoryOnly);
var excludedFiles = new List<string>();
foreach (var file in files) {
    if (!file.Name.Contains("NServiceBus") && !file.Name.Contains("Messages")) {
        excludedFiles.Add(file.Name);      
    }
}
endpointConfiguration.ExcludeAssemblies(excludedFiles.ToArray());

这解决了我所有第三方代码的问题,我在配置文件中绑定了重定向扫描程序不尊重,只允许nServiceBus程序集和我的消息dll流过。我想你可能已经解决了这个问题,但我讨厌没有答案的问题,尤其是那些其他人需要帮助的好问题。