When the spring.net framework starts up for an asp.net application does the component that registers all objects in the IoC container recurse all sub-directories referenced in the web.config?
eg.
<spring>
<context>
<resource uri="~/bin/ClientService/ClientService.config"/>
<resource uri="~/MCFModule.config"/>
</context>
</spring>
I believe the answer to be yes looking at the debug info (trace listener) output.
The problem I'm seeing is that when it attempts to create an instance in the '\bin\clientservice' directory it fails with the error message even though the dll exists in the sub-directory;
'Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821' or one of its dependencies. The system cannot find the file specified. '
Any one got any ideas?
Cheers
Ollie