Wednesday, 5 October 2016

facebook sdk c# -

Compiler Error Message: CS1705: Assembly 'Facebook.Web.Mvc, Version=5.0.3.0, Culture=neutral, PublicKeyToken=58cb4f2111d1e6de' uses 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'



This is despite I removed he refference to System.web.Mvc ver2 and added the refference to the ver 3




Why?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...