»Dotnet Ads
»Message Boards
Message Boards
Dotnet Books
»Member Details
Register
Login
LogOut
Submit Code
Submit Jobs
Submit Projects
»Competition
Community
Winners
Prizes
Write For Us
Members
»Other Resources
Links
Dotnet Resources
|
Assemblies Making easy to understandAssemblies Making easy to understand
Hi This is Srinivas Babu thota Chandra Shekar
common lets make assemblies easy enough to understand....
any project should end with stage called deployment ...
every dployed file should have version aswell
....
in component based applications ...Assemblies are designed to simplify application deployment and to solve versioning problems.
Many deployment problems have been solved by the use of assemblies in the .NET Framework.
dll may have same name but if they have same name u know conflict occurs and this conflict is called DLLHELL.
assemblies can solve this
assemblies has verisoning concept which ends dllhell problem
but friends what assembly has .. i mean what are its contents is very important to know
assembly has
manifest
metadata
Microsoft intermediate language (MSIL) code that implements the types
A set of resources.
now twist comes friends
we have
Single file assembly
multifile assembly
The files that make up a multifile assembly are not physically linked by the file system. Rather, they are linked through the assembly manifest and the common language runtime manages them as a unit.
we know we have two types of assemblies
private assemblies and
shared assemblies
shared asemblies can be done by creating strong name key and installing in Gac.
so friends just have this basic idea of assemblies.
|