Where can I find the final list of assemblies shipped with the .NET Framework?

I am trying to decide where the various assemblies came from in my GAC.

It would be useful if I could find a definitive list somewhere (for any given version of the framework), but so far you can find a list of assemblies that are included in the .NET Client Profile.

+3
source share
2 answers

I suspect what you are looking for can be found here:

 Directory of C: \ Program Files \ Microsoft.NET \ RedistList

12/10/2010 03:47 PM.
12/10/2010 03:47 PM ..
11/18/2010 12:19 PM 15,71515 AssemblyList_4_client.xml
11/18/2010 03:47 PM 8,220 AssemblyList_4_extended.xml
               2 File(s)         23,935 bytes

C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0
C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5
C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0

, 64- Program Files (x86).

+4

, , , http://www.dotnetcurry.com/ShowArticle.aspx?ID=535

var filtered = assemb
.Where(x => x.Assembly.FullName.Contains("Version=4.0.0.0"))
.GroupBy(a => a.Name.Length)
.OrderByDescending(x => x.Key);
0

Source: https://habr.com/ru/post/1777150/


All Articles