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 |
What's different about namespace declaration when comparing that to package declaration in Java ?
What is MSIL, IL, CTS and, CLR
What is object service? : Entity framework
Can I set the unlimited length for "maxjsonlength" property in config?
Which filter executes first in an asp.net mvc application?
What are the components required to create a route in ASP.Net MVC?
Difference between Dispose and Finalize method
How do you assign a value to a complex number 7 how has exception hand changed in .net framework 4.0?
Can you please explain the request flow in ASP.NET MVC framework?
What does CLR do as soon as an assembly is created ?
Explain something about model, view and controllers in asp.net mvc?
What is a serverside technology? what is a clientside technology? what is a clientserver technology? what is a internet based application? what is a intranet based application? what is a windows application? what is a console application? Difference between console application and windows application?