assemblies in sub directory?

assemblies in sub directory?

am 23.04.2008 17:11:48 von 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!

RE: assemblies in sub directory?

am 23.04.2008 18:19:00 von brucebarker

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)


"olduncleamos" wrote:

> 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!
>