Richard77
Richard77

Reputation: 21641

How do I check the NHibernate version?

I'm supposed to start working on a project written in ASP.NET MVC2, using NHibernate. I'm more familiar with Entity Framework.

Is there a way I can check which NHibernate's version the application is using?

Upvotes: 3

Views: 1515

Answers (1)

Claudio Redi
Claudio Redi

Reputation: 68400

On visual studio, go to project using nhibernate then open references folder, righ click over nhibernate assembly and click properties. You'll should be able to see the the version.

You could do something similar outside visual studio, right clicking over nhibernate.dll and checking assembly version on details tab.

Upvotes: 5

Related Questions