Our previous ASP. NET project compiles the DLL file referenced by the project into the bin directory of the site, or the program runs without prompting for the associated DLL. It is particularly useful to develop plug-in modules with controller functionality by automatically loading DLL files from other directories (such as ~/plugins/bin) rather than copying them to the site Bin directory while the program is running. The principle is very simple, just configure it in the Web. config.
<runtime> <assemblybinding xmlns="urn:schemas-microsoft-com:asm.v1"> <probing privatepath="plugins/bin/" />
<!--can add some dependency configurations-
<dependentAssembly>
<assemblyidentity name= "AUTOFAC" publickeytoken= "17863af14b0044da" culture= "neutral"/>
<bindingredirect oldversion= "0.0.0.0-3.5.0.0" newversion= "3.5.0.0"/>
</dependentAssembly>
</assemblyBinding> </runtime>
Do you want to put the bin directory for ASP.