What are the ways to deploy an assembly?
Answers were Sorted based on User's Feedback
Answer / swathi
There are three primary ways to deploy an assembly on a
target machine. The first technique involves deploying a
DLL as a private assembly by locating it in the
ApplicationBase directory. The second technique involves
installing it in a machine-wide repository called the
Global Assembly Cache (GAC). The third technique involves
configuring an assembly DLL with a <codeBase> element that
allows the CLR to download the DLL on demand from across
the network the first time it's used by a hosting
application.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / swapna
An MSI installer, a CAB archive, and XCOPY command.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / mega
for deploying an assembly we have to create a Strong name.
Using SN.EXE can we create a strong name
eg:
SN.EXE -k "C:\ass.snk"
Once the strong name has been created add it to the GAC file
using GAC utility .
| Is This Answer Correct ? | 1 Yes | 0 No |
Can u tell me differences which are introduced in .Net 1.1 and 2.0 and 3.0 and also in 3.5 ? by detailed?
When was .NET announced
Where are the routing rules defined in an asp.net mvc application?
Does the .NET Framework have in-built support for serialization?
How to identify the Code which Complies corresponding Compiler in .NET? Means Suppose, i am taking One project A.. in which code is implemented using C# langugge. And Another Project B..in Which Code is implemented using VB.NET. Suppose I am creating Project C. i am adding Reference of Project A and B to Project C. So, in Project C, how to identify Project A is Complied through CSCompliler? And Project B is Compiled VBCompiler at Runtime?
What is layout in mvc?
how to disable the lazy loading framework?
What is edm in entity framework?
Can I redirect tracing to a file
What is the difference between .net core and .net framework?
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?
What are the main features of asp.net mvc 4 used by asp.net web api?