How does MSBuild check whether a target is up to date or not?

前端 未结 2 1417
一向
一向 2021-02-13 21:50

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.         


        
2条回答
  •  忘掉有多难
    2021-02-13 22:34

    MSBuild compares the input and output file timestamps to determine whether a file is up to date. See Incremental Builds for details.

提交回复
热议问题