dependent assembly binding redirect


/ Published in: C#
Save to your folder(s)

use this if you want to make a binary use an older version of a dependent binery


Copy this code and paste it in your HTML
  1. <runtime>
  2. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  3. <dependentAssembly>
  4. <assemblyIdentity name="NHibernate"
  5. publicKeyToken="aa95f207798dfdb4"
  6. culture="neutral" />
  7. <bindingRedirect oldVersion="2.1.0.4000"
  8. newVersion="X.X.X.X" />
  9. </dependentAssembly>
  10. </assemblyBinding>
  11. </runtime>

URL: http://stackoverflow.com/questions/1652552/nhibernate-caches-syscache-version-issues-with-nhibernate-2-1-0-branch

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.