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

Viewed 7876

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?

2 Answers
Related