I have an ASP.NET MVC project which references a whole bunch of assemblies - some of it are targeting .NET standard while the rest are on .NET framework.
Is there an easy way to get a list of all my referenced assemblies and the .NET version they target? (I already know how to check them one-by-one - but is a productivity killer)
Perhaps a tool/script could look into the bin folder where all the dlls are and figure this out?
I do have dotPeek, but not sure if it helps.
This SO question is using a PS script to do this on a specific dll - can it be extended to all the dlls in a folder?