如何让msbuild不重建所有项目
我们有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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就像拉尔斯所说,你必须以“构建”目标来构建它。如果项目仍在重建,则必须将详细程度更改为详细 (/v:d)。
打开日志文件并搜索“完全构建目标“CoreCompile”。”。
检查下面的第一行,了解该项目完全构建的原因。
应该有这样的东西:
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:
调用 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.