0

I restructured part of my db into a new db (using mySQL). On importing it into my website project I get 62 errors all stating "Reference required to assembly System.Core Version=4.0.0.0". So naturally I try to add it and VS says its already referenced. I've tried numerous things to fix including rerunning the code generation tool, re-saving the diagram but nothing works and those errors still exist, any thoughts?

1
  • What's the target framework for the project? It's probably a conflict between that and whatever framework version is referenced in the mySQL library (no idea which that would be). Commented Aug 28, 2013 at 12:19

1 Answer 1

1

Well, the solution was rather easy, I just added my own entry in the web config from the info in the error. Adding this line resolved the problem.

 <add assembly="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.