Hi,
I have recently created a module. Now i am making the deployment from the host ->module definitions menu. During deployment dnn copies the files i specify for the bin folder to bin\modules folder. Due to this, my controls are not able to access these assemblies and i get "unknown namespace or assembly not found" error. When i copy the assemblies from bin\modules to bin\. It starts working.
The web.config has the following which is ok, that bin\modules folder is in the probing path.
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin;bin\Modules;bin\HttpModules;bin\Providers;bin\Support;"/>
</assemblyBinding>
</runtime>
The dnn module defnition file (.dnn) file has following entires for the assemblies.
<file>
<path>[bin]</path>
<name>ApplicationDefinitions.dll</name>
</file>
<file>
<path>[bin]</path>
<name>ApplicationServices.dll</name>
</file>
I am not having a clue on this, please help.
I am using Asp.net 2.0 and lastest version of DNN.
Thanks in advance.