I'm trying to resolve some assembly binding redirects for NHibernate 3.1 to 3.3.3.4001. I've not been having much luck with the following:
<dependentAssembly>
<assemblyIdentity name="NHibernate"
publicKeyToken="aa95f207798dfdb4"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.3.3.4001"
newVersion="3.3.3.40001" />
</dependentAssembly>
The DLL properties indicate the file version is 3.3.3.4001, however DotPeek says that the FQ AssemblyName is "NHibernate, Version=3.3.1.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4".
What's going on here?