0

I have a project by NHibernate (version 2.1). For upgrade to NHibernate 3.2, what should I do?

Do I need that upgrade following dll?

  1. Antlr3.Runtime
  2. Castle.Core
  3. Castle.DynamicProxy2
  4. NHibernate.ByteCode.Castle

I could not find those dll in NHibernate 3.2. Now what should I do?

jeha
  • 10,562
  • 5
  • 50
  • 69
  • duplicate http://stackoverflow.com/questions/7062243/upgrade-to-nhibernate-3-1/7062577 – Sly Oct 21 '11 at 09:04

1 Answers1

3

They are not needed any more. Just delete all dlls that are not there any more (except maybe log4net, that's now optional but without it there won't be any logging).

You might also get errors in your hibernate.cfg.xml, just remove the deleted elements like ProxyFactoryFactory.

cremor
  • 6,669
  • 1
  • 29
  • 72
  • Build failed.Flowing error is given "The type or namespace name 'Core' does not exist in the namespace 'Castle' (are you missing an assembly reference?)" – Biswajit Sarkar SIPL Oct 21 '11 at 10:09