First Appdomain

  • Thread starter Thread starter Scott Meddows
  • Start date Start date
S

Scott Meddows

I would like to control the appdomain that my application starts up in. Is
there any way to change these initial settings (IE - Shadow copy assemblies)
without calling another assembly first to load the application I really want
to run in another AppDomain?

Thanks!
 
Scott Meddows said:
I would like to control the appdomain that my application starts up in. Is
there any way to change these initial settings (IE - Shadow copy assemblies)
without calling another assembly first to load the application I really want
to run in another AppDomain?

What exactly are you trying to accomplish? You want to manually create an
application domain and move your self into it, but you don't want to use a
strap/loader asm.

is that right?
 
Yes, that is correct.

I'd like to be able to XCopy assemblies into a directory while users are
using the program. The only thing I can think of for this is to have the
assemblies loaded into another AppDomain and have the domain set to shadow
copy the assemblies.
 
Back
Top