如何处理我的代码未引用但需要位于 bin 中的依赖项 DLL?

发布于 2024-10-27 19:01:01 字数 234 浏览 0 评论 0原文

我正在为第三部分应用程序开发一系列插件,供应商为我们提供了他们所有的插件程序集以及一些用于使用他们的系统的帮助程序集。

我们的代码通常引用这些辅助程序集,但它们的插件程序集仍然需要复制到外部 bin/debug 或 bin/release 目录。通常我会将其作为主项目的构建后事件,但由于该项目是具有自己的依赖项的各个项目的集合,我不确定该怎么做。

在 Visual Studio 中处理这种情况有哪些建议(或最佳实践)?

I'm developing a series of plugins for a 3rd part application, and the vendor gives us all of their plugin assemblies along with some helper assemblies for working with their system.

Our code usually references these helper assemblies, but the their plugin assemblies still need to be copied to the external bin/debug or bin/release directory. Normally I would make this a post-build event on the main project, but since this project is a collection of individual projects with their own dependencies I am not sure what to do.

What are some recommendations (or best practices) for handling this situation in Visual Studio?

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

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

发布评论

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

评论(1

为你拒绝所有暧昧 2024-11-03 19:01:01

将 DLL 添加到项目中具有描述性名称(库、第三方等)的文件夹中。

将它们的复制到输出目录属性 (F4) 设置为如果较新则复制始终复制

Add the DLLs to your project in a folder with a descriptive name (libs, third-party etc...).

Set the Copy to Output Directory property on them (F4) to Copy if Newer or Copy Always.

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