Eric, you can set up assembly binding redirection for you app.
Add this to your app.config / web.config.
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="NHibernate"
publicKeyToken="aa95f207798dfdb4" culture="neutral" />
<bindingRedirect oldVersion="3.1.0.4000" newVersion="3.2.0.2001" />
</dependentAssembly>
</assemblyBinding>
</runtime>
--
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.