Reputation: 113
I am trying to find the simplest best way to find all the programs in our source control that use a particular .vb file. Is there an easy way to do this or do I just need to go through each program and search for my particular file?
Upvotes: 1
Views: 205
Reputation: 113
Ok thanks to some of my colleagues here is how to do it. To find any files within your project you can search the .vbproj file. If you download grepWin you can search a directory for a specified file based on its ext. (.vbproj), then you can put in the file you are looking for and search. It will return a listing of all the programs/.vbproj files that contain the text you searched for.
Upvotes: 1