How to Fix Could Not Load the Assembly in C#
Recently I was deploying a module of a website on top of another virtual directory. Of course the simplest way is to make this directory a...

<configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <probing privatePath="bin;MYDIRECTORY/BIN"/> </assemblyBinding> </runtime> </configuration>What it basically does, is tell the IIS to look for bin objects in the MYDIRECTORY/BIN folder relative to the virtual directory itself.
Post a Comment