When we try to build our website in Visual Studio 2005, we get stopped with a bunch of errors that read something similar to:
Indirect reference is being made to assembly System.Web.Extensions version 3.5.0.0, which contains 'Telerik.Web.UI.RadDatePicker'. This Project references a prior version of System.Web.Extensions version 1.0.61025.0. To use 'Telerik.Web.UI.RadDatePicker', you must replace the reference to System.Web.Extensions with version 3.5.0.0 or higher.
Our application is in ASP.NET 2.0.
This is how it reads in the web.config:
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
How do we get this problem resolved so we can build this site?
Thanks in advance.
Indirect reference is being made to assembly System.Web.Extensions version 3.5.0.0, which contains 'Telerik.Web.UI.RadDatePicker'. This Project references a prior version of System.Web.Extensions version 1.0.61025.0. To use 'Telerik.Web.UI.RadDatePicker', you must replace the reference to System.Web.Extensions with version 3.5.0.0 or higher.
Our application is in ASP.NET 2.0.
This is how it reads in the web.config:
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
How do we get this problem resolved so we can build this site?
Thanks in advance.