Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I list all *unavailable* projects in a Visual studio solution?

I have a solution with 90+ projects with lots of folders "hiding" the projects in the Solution explorer tree.
Due to a lengthy rebase with shaky merge I have some csproj files that are incorrect. Is there a way to get a list of these?

I can manually recurse the tree and look for all "YetAProject (unavailable)" projects but would prefer a faster and less manual way.

I tried building but as they are not available they are not compiled and hence leave no trace.

like image 762
LosManos Avatar asked Jan 09 '19 09:01

LosManos


People also ask

What is the purpose of the * .sln file in Visual Studio projects?

sln file. The . sln file contains text-based information the environment uses to find and load the name-value parameters for the persisted data and the project VSPackages it references. When a user opens a solution, the environment cycles through the preSolution , Project , and postSolution information in the .

How do I see all codes in Visual Studio?

Search across files# VS Code allows you to quickly search over all files in the currently opened folder. Press Ctrl+Shift+F and enter your search term.

Can a Visual Studio solution contain multiple projects?

Visual Studio extension that allows adding multiple existing projects into the solution. Optionally creates the solution folder structure reflecting to the physical hierarchy on disk. See the change log for changes and road map.

What is the difference between solution and project in Visual Studio?

A project is contained within a solution. Despite its name, a solution isn't an "answer". It's simply a container for one or more related projects, along with build information, Visual Studio window settings, and any miscellaneous files that aren't associated with a particular project.


1 Answers

Within the solution explorer simply enter into the search box (unavailable) and the list will be filtered.

Filtered solution explorer

like image 112
Oliver Avatar answered Sep 20 '22 23:09

Oliver