我想将我的应用程序使用的所有库(dll)放到一个子目录中(让'说出名为“lib”)。如何指示程序集加载程序在该特定目录中查找引用的程序集(该目录是存在主程序集的目录的子目录)?
我认为应该通过app.config中的某些设置来完成,对吧?
答案 0 :(得分:21)
probing paths。借用MSDN的例子:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin;bin2\subbin;bin3"/>
</assemblyBinding>
</runtime>
</configuration>