gpt4 book ai didi

assemblies - StructureMap 和扫描程序集

转载 作者:行者123 更新时间:2023-12-04 08:46:36 25 4
gpt4 key购买 nike

所以,我有一个使用 StructureMap 的 .NET 解决方案,我想让 StructureMap 读取一个外部程序集,该程序集从该解决方案中的项目中实现接口(interface)并为其定义注册表项。

我的解决方案的 StructreMap 配置:

ObjectFactory.Initialize(registry =>
{
registry.Scan(assembly =>
{
assembly.TheCallingAssembly();

//Telling StructureMap to sweep a folder called "extensions" directly
//underneath the application root folder for any assemblies found in that folder
assembly.AssembliesFromPath("extensions", addedAssembly => addedAssembly.GetName().Name.ToLower().Contains("extension"));

//Direct StructureMap to add any Registries that it finds in these assemblies, assuming that all the StructureMap directives are
//contained in registry classes
assembly.LookForRegistries();
});
});

非常简单,我告诉它将调用程序集和从目录中的程序集添加到程序集集合中。我已经调试了程序集变量,它确实找到了所有程序集(包括扩展目录中的程序集)。

在我与原始解决方案分开创建的 DLL 项目中,我有一个接口(interface)的实现(我从原始解决方案中引用了接口(interface)项目),并编写了一个非常简单的注册表:
public class ProductMockRegistry : Registry
{
public ProductMockRegistry()
{
ForRequestedType<IProductRepository>().AddInstances(repository =>
{
repository.OfConcreteType<ProductMockRepository>();
});
}
}

我遇到的问题是,StructureMap 在外部 DLL 中找不到注册表。它发现 DLL 很好,但是当我告诉 LookForRegistries 时,它没有找到它。

最佳答案

关于assemblies - StructureMap 和扫描程序集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/508399/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com