I got this error when I am trying to create a report using Crystal Reports tool included in VS2008 with .NET 3.5 SP1. I also have VS2005 installed. I found perfect solution on the below website but must consider the scenario.
http://sjc.ironspeed.com/post?id=3039720
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" /> <strong><bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.5.0.0" /></strong> <!--bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" /--> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" /> <strong><bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.5.0.0" /></strong> <!--bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" /--> </dependentAssembly> </assemblyBinding> </runtime> |