In context of an ASP.NET Website project, is it possible to create a second location where DLLs will be picked up from, in addition to the regular bin/ location and apart from the GAC? I expect such a feature would be made possible by the configuration.

link|improve this question

Could you explain why you're doing it? – IrishChieftain Mar 22 '11 at 23:55
@IrishChieftain: It's to leverage behavioural characteristics of a deployment model of a particular software application we're combining into our ASP.NET projects. Too much description and noise to bother with here. Just looking to see if Microsoft has provided a way for it to be accomplished, in and of itself. – John K Mar 23 '11 at 4:21
cool :) +1 – IrishChieftain Mar 23 '11 at 14:58
feedback

1 Answer

up vote 2 down vote accepted

You can use the codeBase element - it allows you to specify URL of an assmebly (which can be a FILE: URL), though it does require the assembly to be strongly named.

See this article describing this and another method (using the AssemblyResolve event which fires whenever the assembly loader fails to find an assembly).

link|improve this answer
I like all this very much. Thank you. – John K Mar 23 '11 at 4:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.