如何在 MEF 中设置 PrivateBinPath?
如何在 MEF 中设置 PrivateBinPath?
这就是我想做的:如何更改.NET中引用的加载路径?
How can I set PrivateBinPath in MEF?
This is what I'm trying to do : How to change the loading path of references in .NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过应用程序配置文件来执行此操作: assemblyBinding 元素,更准确地说 - 探测:
这将强制运行时在
bin 中查找程序集
、bin2
、bin2\subbin
和bin3
目录,所有这些都是应用程序基目录的子目录。You can do this through application config file: assemblyBinding element, more precisely - probing:
This will force runtime to look for assemblies in
bin
,bin2
,bin2\subbin
andbin3
directories, all of which are subdirectories of the application's base directory.