I am working on a Project that is bind in TFS, this project gives me a folder Log.
When I execute my project and do some testing it generates text files and store in Log folder.
After that when I try to check in files those files are checked in as a new file in TFS.
I want TFS to exclude these files. Folders where I store temp files are:
\WebPages\ErrorLogs
\WebPages\TempReports
Is there a setting in TFS where I can say it not to include this folder in TFS but Get latest from server if any?
Is it possible to create a Check-in-Policy for this problem?
Use the Forbidden Patterns Policy included in the TFS Power Tools
The following regex prevents
suo
files from being checked-in:The following regex prevents
bin
,obj
anddebug
folders from being checked-in:If you are using Team Explorer Everywhere you can use this document to find out how to configure the policies directly through the Eclipse plugin.