I am exploring a structure of folders with C# projects such as the following:
- Projects
- ProjectA
- ProjectB
- ProjectC
- ProjectD
Scattered around in the same folders as the .csproj files, there are several solution (.sln) files. Is there a fast way to find all the solutions that contain ProjectD.csproj? I can open them one by one and see what they contain, but I would like a feature such as “find all the solutions containing this project”.
Just do a
Find in Filessearch in all files with the extension .sln and look for any row beginning with the word “Project”.I like TextPad so I use that to search with but there are plenty of other tools including many free ones.