Replacing dll to a newer version

后端 未结 2 1300
天命终不由人
天命终不由人 2020-12-22 01:02

I have a Caliburn.Micro application with many projects. Several projects refer to the same dll in a separate folder. Now I needed to replace that dll with a newer version. I

2条回答
  •  天涯浪人
    2020-12-22 01:33

    I think you're using Visual Studio. First of all, check in the properties of all that FileHelpers referenced if the Specific Version is set to False (if not, do it). Try to clean and build back.

    If the problem persist, in the app.config of your solution, in the configuration section, add

    
        
            
                
                
            
        
    
    

    In this way you should be able to force the used version to the new one.

提交回复
热议问题