Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Assemblies Framework and Extensions

What is difference between Assemblies Framework and Assemblies Extensions in Add Reference Dialog box?

enter image description here

like image 687
Dave Kapildev Avatar asked Dec 30 '14 14:12

Dave Kapildev


1 Answers

According to MSDN (hit the ? in your Add Reference dialog):

The Assemblies tab consists of two sub-tabs:

1.Framework lists all assemblies that constitute the targeted Framework.

2.Extensions lists all assemblies that external vendors of components and controls have developed to extend the targeted Framework. Depending on the purpose of the user application, it might need these assemblies.

So the first is just what Microsoft delivers for that .NET version, the other one contains all others.

like image 158
Patrick Hofman Avatar answered Sep 30 '22 17:09

Patrick Hofman