I'm using Spring.NET as my caching framework. I have an assembly where caching is used and the assembly has other dependent assemblies that have nothing to do with Spring.NET.
When I updated the assembly and deployed, I get an error saying that Spring.AOP can't create an object which is in one of the dependent assemblies.
I deployed the assembly along with all dependent assemblies and the exception went away.
My question is, Do I have to deploy all dependent assemblies every time I update the one that uses Spring.NET?
Thanks in advance.


Reply With Quote
Depending on what are caching, how you are caching it, and what and how the Spring Caching aspect is being applied to, its possible for the situation you are describing to be the case. Its also possible to avoid having to (re)deploy everything as well, but this is largely based on understanding more specifics about your implementation details.