views:

63

answers:

1

We use subversion so we have subfolders named _svn in our solution. Doing a Find in Files returns strings from these subfolders. Is there anyway to tell Visual Studio to ignore these files?

+1  A: 

Instead of searching for files in a directory (your solution's directory, in this case), you could limit your search to the files that are part of the project or the solution. Those in the _svn directories will thus be ignored.

Xavier Nodet
We have nested projects folders inside the solution. So going into each one to find something is timeconsuming
Bernard
The 'Find in Files' dialog has a 'Look in' entry field that can be set to 'Current project' or 'Entire Solution'. Isn't the latter useful for you? I must have missed something, then...
Xavier Nodet