如何解决依赖项不复制的问题
我有一个 EXE 项目 A,它引用了一个类库项目 B(全部在同一个解决方案中)。项目 B 引用了大约 10 个第 3 方 DLL(来自 DevExpress)。所有引用的程序集都将“Copy Local”设置为 true。
当我构建整个解决方案时,项目 B 生成的 DLL 被复制到项目 A 的 bin/debug 中。但是,项目 B 的任何依赖项都不会被复制。
我在编译期间查看了“输出”窗口,一切看起来都不错。没有任何错误。
我该如何解决这个问题?
I have an EXE project A, which references a class library project B (all in the same solution). Project B has a reference to about 10 3rd party DLLs (from DevExpress). All the referenced assemblies have Copy Local
set to true.
When I build the entire solution, the resulting DLL from project B is copied into the bin/debug of project A. However, none of the dependencies of project B get copied.
I looked in the Output window during compile and all looks good. There aren't any errors.
How do I troubleshoot this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保将 copy local 设置为 true,以便您在项目 A 中引用项目 B。
Make sure that copy local is set to true for your reference of project B in project A.