i see when i install fluent nhibernate 1.2 from Nuget, it downloads nhibernate 3.1. If i want to use nhibernate 3.2, how would i do that through nuget and it is compatible with fluent nhibernate 1.2 ?

link|improve this question

Currently FluentNHibernate 1.3 on NuGet is built against 3.2 – mxmissile Sep 8 '11 at 15:48
feedback

3 Answers

up vote 3 down vote accepted

Currently, the FluentNHibernate package from the offical NuGet package source, depends on NHibernate.Castle 3.1 (currently, there is no newer version yet), which in turn depends on NHibernate 3.1 (the exact version, not 3.1 or higher). Therefore, NuGet infers a dependency on NHibernate 3.1 when installing FluentNHibernate.

So the bottom line is: you can't, until the FluentNHibernate package is updated.

The most practical way around is getting the latest FluentNHibernate source code and building it against NHibernate 3.2. I've tested that and it seems to work just fine. You might even be fine using assembly binding redirects, but I haven't tested that.

Alternatively, you can wait for NHibernate 3.2 to reach GA (final) and FluentNHibernate to catch up, but of course that's not a very satisfying answer.

link|improve this answer
feedback

If you use the Nuget Package Manager Console instead of the GUI to get the package (Install-Package FluentNHibernate) you will get version 1.3.0.717 which is compatible with NHibernate 3.2 enter image description here

I tried it and is working fine for me.

link|improve this answer
This is better than the original accepted answer. FNH 1.3 appears to have no dependancy on NHibernate.Castle. Then again, 1.3 is not the current stable release, so use at your own risk. – Matt Johnson Nov 1 '11 at 13:52
2  
Awesome answer. Does anyone know why the NuGet Console behaves differently and gives different results than the GUI? – asbjornu Jan 11 at 18:44
Remarkably (although I didn't believe it would) this also worked for me! +1 – reach4thelasers Feb 19 at 15:05
@Ajadex where can I get version 1.3, official git branch has only 1.2 build. – Johnny_D Apr 18 at 15:01
@Johnny_D I downloaded it using Nuget, I don't know any other way of doing it. I suspect version 1.3 was only created with the purpose of support NHibernate 3.2. – Ajadex Apr 18 at 16:10
show 1 more comment
feedback

Here you can read about plans to release FluentNHibernate for 3.2GA soon and a suggested workaround using attributes

http://groups.google.com/group/fluent-nhibernate/browse_thread/thread/8e782e45ed9ba647

I got my working using

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="NHibernate"
                      publicKeyToken="aa95f207798dfdb4"
                      culture="neutral" />
    <bindingRedirect oldVersion="3.1.0.4000"
                     newVersion="3.2.0.4000"/>
  </dependentAssembly>
</assemblyBinding>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.