Reputation: 21641
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
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