VC 2010 Express keeps adding some "link.*.tlog" files in the project folder. Is it OK to delete them? Thanks!
Printable View
VC 2010 Express keeps adding some "link.*.tlog" files in the project folder. Is it OK to delete them? Thanks!
As far as I remember, *.tlog files are generated for incremental build by the file tracker feature of MSBuild.
I would suggest to disable the generation of these tracking log files (rather then deleting), by manually adding following MSBuild property to the .vcxproj file.
But keep in mind that by doing that, you'll have to sacrifice incremental linking.Quote:
<TrackFileAccess>false</TrackFileAccess>
A related question: There are two huge files "projectname.sdf" and "projectname-xxxxxx.ipch". Can they be disabled or deleted? Thanks!
sdf file
.ipch file
And you could find much more info about these files using Google search
Yes, SDF and IPCH files can safely be deleted, but they will be recreated next time you open your solution in Visual Studio.