使用存储在与主程序不同的文件夹中的参考库(dll)?

发布于 2024-09-16 07:09:53 字数 280 浏览 3 评论 0原文

(这可能是一个显而易见的问题,但我不确定该问 Bing/Google 什么)

在 VS2008(C# Winforms)项目中,引用了许多第三方库。该项目使用“Copy Local = True”,以便各种 DLL 文件最终位于与编译的应用程序相同的文件夹中。

为了清理一切,我想修改程序,以便库都位于子文件夹下。

例如:

C:\MyProgram\ ->主程序文件夹 C:\MyProgram\Libraries -> DLL存储文件夹

我该怎么做?

(This might be a obvious question but I wasn't sure what to ask Bing/Google)

In a VS2008 (C# Winforms) project there are numerous third party libraries that are referenced. The project uses 'Copy Local = True' so that the various DLL files end up in the same folder as the compiled application.

To clean things up I would like to modify the program so that the libraries are all under a subfolder.

For example:

C:\MyProgram\ -> main program folder
C:\MyProgram\Libraries -> DLL storage folder

How would I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

本宫微胖 2024-09-23 07:09:53

执行此操作的最佳方法是将 app.config 文件添加到您的解决方案中,并为每个子文件夹设置私有探测路径。然后,CLR 在搜索程序集

<configuration>
   <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <probing privatePath="subFolder1;subFolder2;" />
      </assemblyBinding>
   </runtime>
</configuration>

文档

The best way to do this is to add an app.config file to your solution and setup private probing paths for each of the sub folders. The CLR will then look in these folders when searching for assemblies

<configuration>
   <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <probing privatePath="subFolder1;subFolder2;" />
      </assemblyBinding>
   </runtime>
</configuration>

Documentation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文