InvalidOperationException:无法解析类型名称或别名IPartService。请检查您的配置文件并验证此类型名称

时间:2019-07-16 10:12:25

标签: c#

我正在引用另一个项目中的dll并遇到错误:

  

InvalidOperationException:无法解析类型名称或别名IPartService。请检查您的配置文件并验证此类型名称

我有两个类库,分别为PartDomain.ApplicationPartDomain.Application.Contracts

PartDomain.Application包含一个名为 Services 的文件夹,该文件夹中的PartService类已存在

PartDomain.Application.Contracts包含一个名为 Interfaces 的文件夹,该文件夹存在IPartService界面

我在 unity.config 中添加了此内容:

<alias alias="IPartService" type="PartDomain.Application.Contracts.Interfaces.IPartService ,PartDomain.Application.Contracts" />
<alias alias="PartService" type="PartDomain.Application.Services, PartDomain.Application" />

<register type="IPartService" mapTo="PartService" />

0 个答案:

没有答案