On 28 Sty, 21:39, sbohlen <[email protected]> wrote:
> See the following for info re: Assembly Binding Redirects:
>
> -http://msdn.microsoft.com/en-us/library/2fc472t2.aspx
> -http://msdn.microsoft.com/en-us/library/433ysdt1.aspx
> -http://msdn.microsoft.com/en-us/library/twy1dw1e.aspx
> Hope this helps,
YES!
I've just added this lines to my Web.config
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Spring.Aop"
publicKeyToken="65e474d141e25e07" culture="neutral" />
<bindingRedirect oldVersion="1.3.0.20349"
newVersion="1.3.1.40711" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Spring.Core"
Culture="neutral"
publicKeyToken="65e474d141e25e07" />
<bindingRedirect oldVersion="1.3.0.20349"
newVersion="1.3.1.40711" />
</dependentAssembly>
</assemblyBinding>
</runtime>
and that works fine.
Thanks for your tip. It resolve my problem.
--
Przemysław Chmielewski
--
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en.