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 |
How we can call a javascript function on the change of a dropdown list in mvc?
Tell me about the internal working of Garbage collector?
In Server how to check whether model has error or not in ASP.Net MVC
Mention two instances where routing is not implemented or required?
What is ado.net data provider? : Entity framework
How to ensure the credentials for WebService using Windows authentication
When using razor views, do you have to take any special steps to protect your asp.net mvc application from cross site scripting (xss) attacks?
Can we free memory explicitly without waiting for garbage collector to free the memory in .net compact framework?
give the feature of .net2.0 over .net1.1
What is Layout in ASP.Net MVC?
How do you convert a string into an integer in .NET
Explain peek method in tempdata in asp.net mvc?