MSBuild 如何检查目标是否是最新的?
MSBuild 针对最新目标发出以下消息:
Skipping target "MyTarget" because all output files are up-to-date with respect to the input files.
实际检查是如何执行的?
MSBuild emits the following message for up to date targets:
Skipping target "MyTarget" because all output files are up-to-date with respect to the input files.
How is the actual check performed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查增量构建的流程:
Check flow of Incremental Build:
MSBuild 比较输入和输出文件时间戳以确定文件是否是最新的。有关详细信息,请参阅增量构建。
MSBuild compares the input and output file timestamps to determine whether a file is up to date. See Incremental Builds for details.