我使用Unity进行依赖注入。我已经在我的服务类库项目中创建了一个配置文件,我在其中定义了unity的所有设置。 在Web配置中,我有以下设置统一。
onClickListener
在类库中,我定义了unity.config。
我在类库中创建了一个静态函数,以便使用设置进行读取。
<configSections>
<section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection, Microsoft.Practices.Unity.Configuration"/>
</configSections>
<unity configSource="assembly://authentication.Services/authentication/unity.config"/>
当我尝试用unity统一解析依赖时,抛出错误unity.config未定义。
Visual Studio抛出异常ConfigurationErrorsException:The configSource属性必须是相对物理路径,所以'/' 不允许使用角色。
如何从我在类库中定义的unity.confiq文件中读取统一设置。
谢谢