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 |
how do you truncate a table using entity data model?
What does a viewmodel do?
WHICH IS THE BEST INSTITUTE FOR DOTNET REAL TIME PROJECT TRAINING
21 Answers ABC, Cap Gemini, Comspark,
How the framework differentiate between 2 version dlls? eg Version 2.0 and 2.1 dlls are there. both are referred in the code.but we are using only name of that dll not the version number. in run time how the framework know which dll has to be referred?
What happens when you encounter a continue statement inside the for loop ?
How we can add the CSS in ASP.Net MVC?
Explain what platforms does the .net framework run on?
What is the .net framework and how does it work?
what is the three pillar of .Net ?
Can I use razor code in javascript in asp.net mvc?
Can we add constraints to the route? If yes, explain how we can do it?
What's an interface