How do you create shared assemblies ?



How do you create shared assemblies ?..

Answer / kirti

Just look through the definition of Assemblies..

* An Assembly is a logical unit of code

* Assembly physically exist as DLLs or EXEs

* One assembly can contain one or more files

* The constituent files can include any file types like image files, text files etc. along with DLLs or EXEs

* When you compile your source code by default the exe/dll generated is actually an assembly

* Unless your code is bundled as assembly it can not be used in any other application

* When you talk about version of a component you are actually talking about version of the assembly to which the component belongs.

* Every assembly file contains information about itself. This information is called as Assembly Manifest.

Following steps are involved in creating shared assemblies :

* Create your DLL/EXE source code

* Generate unique assembly name using SN utility

* Sign your DLL/EXE with the private key by modifying AssemblyInfo file

* Compile your DLL/EXE

* Place the resultant DLL/EXE in global assembly cache using AL utility

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

Is there built-in support for tracing/logging

1 Answers  


What is Reference type and value type

1 Answers  


explain lazy loading, eager loading, and explicit loading?

0 Answers   Microsoft,


What type of filter does outputcacheattribute class represents?

0 Answers  


what is an assembly?

11 Answers  






What is the CLS

1 Answers  


Which is the best institute in chennai to learn DotNet?

7 Answers  


How you can implement custom validation in asp.net MVC?

0 Answers  


What is the 'page life cycle' of an ASP.NET MVC?

0 Answers   NA,


what is conceptual model?

0 Answers   Microsoft,


which is good java or Dot net?

3 Answers   Halosys,


What is the use .Glimpse in ASP.Net MVC

0 Answers   B-Ways TecnoSoft,


Categories