探究privatePath和子目录 [英] probing privatePath and subdirectories

查看:189
本文介绍了探究privatePath和子目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用程序中,我想将DLL文件放在一个子目录中.我在app.config中使用了probing元素,它工作得很好,但是本地化程序集存在问题.

In my application I would like to put DLL files in a subdirectory. I'm using the probing element in app.config and it works quite fine, but I've got an issue with localization assemblies.

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <probing privatePath="libs"/>
</assemblyBinding>

如果我有两个DLL:

libs/de/myAssembly.dll

libs/myAssembly.dll

第一个已加载,但我希望首选根文件夹中的文件.我该如何实现?

The first one is loaded, while I want that the file in the root folder is preferred. How can I achieve this?

推荐答案

您可以设置多个探测路径.

You can set multiple paths to probe.

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <probing privatePath="libs;libs/de;libs/fr"/>
</assemblyBinding>

请参见探测元素的正式Microsoft文档.

这篇关于探究privatePath和子目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆