如何让msbuild不重建所有项目

发布于 2024-12-09 16:06:05 字数 174 浏览 0 评论 0原文

我们有CCnet+msbuild+tfs。

为每个项目配置构建。我们没有使用解决方案进行构建。

问题是,如果我们只

对源代码管理中的一个确切项目进行了 1 项更改,那么我们应该如何配置构建,以便不再重新构建所有项目?有什么办法可以提出一些条件吗?

我们应该在哪里指定它?

We have CCnet+msbuild+tfs.

Builds are configured for each project. We didnt build with solution.

The problem is how should we configure build to not rebuild all projects again if we make only 1

change relevant to one exact project in source control ? Is there any way to make some condition, and where should

we specifu it ?

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

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

发布评论

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

评论(2

口干舌燥 2024-12-16 16:06:05

就像拉尔斯所说,你必须以“构建”目标来构建它。如果项目仍在重建,则必须将详细程度更改为详细 (/v:d)。

打开日志文件并搜索“完全构建目标“CoreCompile”。”。
检查下面的第一行,了解该项目完全构建的原因。
应该有这样的东西:

    Building target "CoreCompile" completely.
    Input file "C:\Users\xxx\AppData\Local\Temp\xpv14dzs.cs" is newer than output file "obj\Debug\Assembly.pdb".

Like Lars said, you have to build it with "Build" target. If projects are still rebuilding, you have to change verbosity to detailed (/v:d).

Open log file and search for "Building target "CoreCompile" completely.".
Check the first line below for a reason why this project was build completely.
There should be something like this:

    Building target "CoreCompile" completely.
    Input file "C:\Users\xxx\AppData\Local\Temp\xpv14dzs.cs" is newer than output file "obj\Debug\Assembly.pdb".
瞎闹 2024-12-16 16:06:05

调用 msbuild 时,使用 Build 作为目标,而不是 ReBuild。还要确保您不更改源文件的日期,也不删除任何中间调试文件。

When calling msbuild use Build as target and not ReBuild. Also make sure you don't change the date of the source files and not to remove any intermediate debug files.

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