Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of all standard .net 4.5 libraries (dlls) [closed]

Where I can find a full list of all standard .NET assemblies (.dll files)?

Note: There is a list for .net 4.0 client profile only, but I need a list for .NET 4.5 (full profile)

like image 682
Vova Avatar asked Oct 14 '25 03:10

Vova


1 Answers

Navigate over to C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5 and you'll see the entire list.

There's an online list of assemblies in the .NET Framework Client profile for v4:

https://msdn.microsoft.com/en-us/library/vstudio/ff462634(v=vs.100).aspx

But there doesn't appear to be one for the newer ones. So, I would just go off of what you see in that directory I mentioned.

like image 107
B.K. Avatar answered Oct 18 '25 15:10

B.K.