Daniel
Daniel

Reputation: 1357

Is it safe to include in .gitignore Visual Studio *.tlog files?

They seem not to be included in the standard .gitignore cited in a different Stackoverflow post. I am using mainly C#

Thanks

Upvotes: 3

Views: 1278

Answers (1)

Joey
Joey

Reputation: 354794

Since those files usually reside in the $(IntDir) or $(OutDir) (i.e. obj/Debug or bin/Debug) they're already ignored because those folders are ignored.

Upvotes: 4

Related Questions