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 is separation of concerns in asp.net mvc?
What are the possible razor view extensions?
What is GUID and why we need to use it and in what condition? How this is created
Can you explain renderbody and renderpage in asp.net mvc?
what is the three pillar of .Net ?
what do you mean by navigation property?
How OS come to know whether to load the .net framework when we run an .exe created using .Net framework?
what is way of loading data in ef (entity framework)?
What is layout in mvc?
im software developer (.net). i goth1b (usa )appointment 30th of this month . chennai people asking responsbilities .can anyone wht responsbilities i need say . plz help me
what is namespace?
Is it possible to combine asp.net webforms and asp.mvc and develop a single web application?