Given an opened solution in Visual Studio, how do I quickly check which target frameworks the various projects in the solution have? Is there a solution-wide view somewhere that shows which target framework each project targets, or an aggregate view of how many projects target each framework version?
I'm aware I can check each project individually (either on properties window or on the csproj
file itself), however in a solution with 100+ projects this is not feasible.
Additionally, I know I could probably do some sort of regex search inside csproj
files in the root folder, but I was wondering if there was something built-in in Visual Studio to provide this data.