How to check changes made in specific files in project

581 Views Asked by At

I am working on a solution on Microsoft Visual Studio 2013 Premium, among a large group of developers. Every time someone makes changes in any file, i get the latest version of the solution and the Output Window gives a list with all the modified files. Problem is i want to check specific files in the project (.xml, .cs, etc). Is there a way to filter these files by their file extension or maybe by their folder location in the solution? Thanks in advance!

1

There are 1 best solutions below

0
On BEST ANSWER

The simplest way is using tf check out command.

There's an itemspec you could pass, and an itemspec could contain wildcards.

itemspec

Specifies the scope of the items to check in. For syntax, see Use Team Foundation version control commands.

For example, you could use below command to check out all .cs fils under a folder.

tf checkout /recursive *.cs