Using different versions of the same assembly in the same folder
        Posted  
        
            by Hemanshu Bhojak
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Hemanshu Bhojak
        
        
        
        Published on 2010-03-17T07:39:42Z
        Indexed on 
            2010/03/17
            11:21 UTC
        
        
        Read the original article
        Hit count: 382
        
I have the following situation
Project A
 - Uses Castle Windsor v2.2
 - Uses Project B via WindsorContainer
Project B
 - Uses NHibernate
      - Uses Castle Windsor v2.1
In the bin folder of Project A I have the dll Castle.DynamicProxy2.dll v2.2 and NHibernate dlls. Now the problem is that NHibernate is dependent on Castle.DynamicProxy2.dll v2.1 which is not there. How do I resolve this situation.
© Stack Overflow or respective owner