assemblies in sub directory?

  • Thread starter Thread starter olduncleamos
  • Start date Start date
O

olduncleamos

Hi all,

I am in the process of trying to append a mini app to an existing site
in .NET 1.1. The mini app will be added in a sub directory. The
existing app uses a custom assembly build a couple of years ago. My
mini app, however, requires the updated version of that assembly.

Is there some way I can allow the two versions of the assembly to co-
exist side by side so that the existing app will continue to use the
original assembly but my app will be binded to the newer version?

Thank you for all your help in advance!
 
yes. your main app will have to host its own appdomain, then load the sub app
into the domain.

an easier approach is you host the subapp as a webservice.

-- bruce (sqlwork.com)
 
Back
Top