How can you tell the application to look for assemblies at the locations other than its own install?
Use the directive in the XML .config file for a given application.< privatepath="c:\mylibs;">should do the trick. Or you can add additional search paths in the Properties box of the deployed application.How can you debug failed assembly binds?Use the Assembly Binding Log Viewer (fuslogvw.exe) to find out the paths searched.
Where are shared assemblies stored?Global assembly cache.
How can you create a strong name for a .NET assembly?
With the help of Strong Name tool (sn.exe).
Where’s global assembly cache located on the system?
Usually C:\winnt\assembly or C:\windows\assembly.
Can you have two files with the same file name in GAC?
Yes, remember that GAC is a very special folder, and while normally you would not be able to place two files with the same name into a Windows folder, GAC differentiates by version number as well, so it’s possible for MyApp.dll and MyApp.dll to co-exist in GAC if the first one is version 1.0.0.0 and the second one is 1.1.0.0.
So let’s say I have an application that uses MyApp.dll assembly, version 1.0.0.0. There is a security bug in that assembly, and I publish the patch, issuing it under name MyApp.dll 1.1.0.0.
How do I tell the client applications that are already installed to start using this new MyApp.dll?
Use publisher policy. To configure a publisher policy, use the publisher policy configuration file, which uses a format similar app .config file. But unlike the app .config file, a publisher policy file needs to be compiled into an assembly and placed in the GAC.
What is delay signing?
Delay signing allows you to place a shared assembly in the GAC by signing the assembly with just the public key. This allows the assembly to be signed with the private key at a later stage, when the development process is complete and the component or assembly is ready to be deployed. This process enables developers to work with shared assemblies as if they were strongly named, and it secures the private key of the signature from being accessed at different stages of development.
About Me
- Real Time Scenario
- All about Real time requirements in Orale Stay Tune!!
Showing posts with label C# INTERVIEW QUES-5. Show all posts
Showing posts with label C# INTERVIEW QUES-5. Show all posts
Sunday, April 6, 2008
C# INTERVIEW QUESTIONS
Posted by Real Time Scenario at 6:34 AM 0 comments
Labels: C# INTERVIEW QUES-5
Subscribe to:
Posts (Atom)