如何处理我的代码未引用但需要位于 bin 中的依赖项 DLL?
我正在为第三部分应用程序开发一系列插件,供应商为我们提供了他们所有的插件程序集以及一些用于使用他们的系统的帮助程序集。
我们的代码通常引用这些辅助程序集,但它们的插件程序集仍然需要复制到外部 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 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) toCopy if Newer
orCopy Always
.