I\'ve a working XML Web service written in ASP.Net. Now I need to reference certain assemblies lying in a specific folder e.g. c:\\NotMyCode
I do no
According to the MSDN documentation,
Referenced assemblies outside the application's root directory must have strong names and must either be installed in the global assembly cache or specified using the element.
So, it might appear that you're out of luck. Here's what I'd try:
linkd SharedCode c:\NotMyCode. This makes \SharedCode effectively be an alias for c:\NotMyCode.SharedCode. Since this is under your application base, it should work. Alternatively, use AppDomainSetup.PrivateBinPath to set the path probed for assemblies.I'm quite curious to see if this works :-)