Resolved bugs
Release date: | Monday, March 15, 2010 |
---|---|
C1 Version: | Composite C1 1.2 SP4 Patch 2 (1.2.3726.24836)... |
Description | C1 uses non-signed versions of Microsoft Enterprice Library, and therefore some plugins that are using different version of EntLib, cannot be loaded correctly. It is still necessary to copy those conflicting dlls to some folder, and references to them to the "runtime" section of the web.config file, f.e.: <configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> ...... <dependentAssembly> <assemblyIdentity name="Microsoft.Practices.EnterpriseLibrary.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> <codeBase version="3.0.0.0" href="./bin/dependent/Microsoft.Practices.EnterpriseLibrary.Common.dll"/> </dependentAssembly> <dependentAssembly> </runtime> </configuration> |