Biswajit Sarkar SIPL
Biswajit Sarkar SIPL

Reputation: 51

Upgrade to NHibernate 3.2

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?

Upvotes: 0

Views: 1037

Answers (1)

cremor
cremor

Reputation: 6886

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.

Upvotes: 3

Related Questions