|
-
May 12th, 2012, 09:14 AM
#1
link.xxxxx....tlog files OK to delete?
VC 2010 Express keeps adding some "link.*.tlog" files in the project folder. Is it OK to delete them? Thanks!
-
May 12th, 2012, 03:03 PM
#2
Re: link.xxxxx....tlog files OK to delete?
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.
<TrackFileAccess>false</TrackFileAccess>
But keep in mind that by doing that, you'll have to sacrifice incremental linking.
Last edited by Ejaz; May 12th, 2012 at 03:06 PM.
-
July 14th, 2012, 01:07 PM
#3
Re: link.xxxxx....tlog files OK to delete?
A related question: There are two huge files "projectname.sdf" and "projectname-xxxxxx.ipch". Can they be disabled or deleted? Thanks!
-
July 14th, 2012, 02:59 PM
#4
Re: link.xxxxx....tlog files OK to delete?
sdf file
.ipch file
And you could find much more info about these files using Google search
Victor Nijegorodov
-
July 19th, 2012, 09:11 AM
#5
Re: link.xxxxx....tlog files OK to delete?
Yes, SDF and IPCH files can safely be deleted, but they will be recreated next time you open your solution in Visual Studio.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|