如何使 MSBuild 自动将所有间接引用复制到输出(bin)文件夹

发布于 2024-08-04 07:59:38 字数 256 浏览 2 评论 0原文

主题。

“自动”在这里至关重要。不得复制 GAC 的参考资料。

我见过例如 VS2008.NET :将引用项目的依赖项复制到主项目的 bin 文件夹,这对我来说并不有趣。我希望自动复制所有依赖项。

Subj.

"Automatically" is essential here. References from GAC must not be copied.

I've seen e.g. VS2008.NET: Getting a referenced project’s dependencies to copy to main project’s bin folder, and this isn't interesting for me. I'd like all the dependencies get copied automatically.

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

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

发布评论

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

评论(2

守护在此方 2024-08-11 07:59:38

对于 C++ 项目,即 *.vcxproj 设置 属性。

对于 C# 项目,即 *.csproj 设置 属性。

确保没有任何内容覆盖这些属性。在我为主要的大型产品进行构建的这些年里,我从来没有做过任何不同的事情。如果你必须做任何其他聪明的黑客,你肯定做错了什么。

For C++ projects, i.e. *.vcxproj set the <OutDir> property.

for C# projects, i.e. *.csproj set the <OutputPath> property.

Make sure nothing overwrites those properties. In all my years doing builds for major, large products, I've never had to do anything different. If you have to do any other clever hack, you are surely doing something wrong.

篱下浅笙歌 2024-08-11 07:59:38

使用构建后事件

编辑

XCOPY c:/additionlib $(OutDir)

use post build event

EDIT

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