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
c:\\NotMyCode
You could always use the: AppDomain.CurrentDomain.AssemblyResolve Event and call
Assemly.Load(Path.Combine(@"c:\NotMyStuff",args.Name.Substring(0, args.Name.IndexOf(",")) + ".dll"))
See link for more info.