I have project in VS2010 based of .net 4.0
And I try to include external dll, based of .net 3.5.
I get warning conflict versions of libraries and external dll does not load…
Source code of external dll does not have.
What I can do?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do you need featues of .net 4.0 in your project? (you could set the .net framework to 3.5 in the Project propertys.)
Otherwise you could make a wrapping project.
: Add a new .net 3.5 c# Project to your solution and add the reference to your 3.5 dll. Then reference the wrapper project from your initial project and you should be able to use the classes from the dll.