I have a DLL that I need to be a part of the current AppDomain. Is there a way to signal the AppDomain to pick up dlls from some list in the app.config/web.config?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You can put the name of the assembly in the app.config file and then load it up at run time using the Assembly.Load options and reflection. Here is a link to the MSDN article describing how to do this. http://msdn.microsoft.com/en-us/library/25y1ya39.aspx Basics
Example from the link:
|
|||
|
|