Good evening everybody,
I hope everyone celebrates a safe New Year's holiday. I did a little website in VS2010 .NET 4.0 and I need to change it to .NET 3.5. So in the following snippet of the web config file I removed the
bit that says "targetFramework="4.0". But when I did that and tried to build the solution I get the error mentioned at the bottom of this post. I've gone crazy trying to figure this out. Could someone please show me how to fix this. I need to get this
to be .Net 3.5. Please.
<compilation debug="false" targetFramework="4.0">
<assemblies>
<add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
...
Go to the complete details ...