I'm having difficulty with a web app that was originally developed in VS2008 that includes Microsoft.ReportViewer.WebForms. In order to rebuild this app in VS2010 (which we're using now), I've deleted the references to the old ReportViewer (v9.0.0.0) and replaced them with references to version 10.0.0.0 (Microsoft.ReportViewer.Common and Microsoft.ReportViewer.WebForms). The web.config seems to have updated correctly, and I also have an AJAX reference on the .aspx page that I updated to 10.0.0.0. When I run the app in VS debug mode, the app works perfectly, but when I try to build, I get the following message:
"The type or namespace name 'Reporting' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)"
The namespace name "Reporting" does exist in the namespace "Microsoft" because I looked it up. The only reference to the "Reporting" namespace is in the AJAX register tag on the .aspx page, and this automatically updates the .aspx.designer script, where I get the error. I don't understand why it would work in debug mode, but it doesn't compile correctly.
