I have this scenario:
i have a assembly with my business object types and this assembly is loaded with reflection at runtime(Assembly.LoadFile) in WCF with KnownTypesProvider but this assembly maybe can change (some developer add a new method or new property o even change some functionality maybe bugfix) but using Assembly.LoadFile the assembly file is locked and i can't replace this assembly.
Exists a framework for type caching? using assembly ver. or assembly mod date? or even exists a way to load without lock assembly?
THX!!!!!!!!