I develop on the same win7 64bit machine with both VS2008 and VS2010. In VS2008 I use CR 10.5 runtime (standard Crystal Report for VS2008) and it works fine.
Now I've unistalled CR for vs2010 beta and installed CR vs2010 final release, but I have a couple of problem:
1. converting from vs2008->vs2010 a asp.net web app, now I get log4net.dll is missing error, in a project where I've never used nor referenced this dll.
2. dragging ReportViewer CR object from toolbox to web page, it reference 10.5 version and not 13.0 version:
<%@ Register Assembly="CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
Changing by hand the 10.5.3700.0 to 13.0.2000.0 it works (almost). I've checked in the toolbox and the ReportViewer version is 13.0
What's wrong ?
Dome