I recently converted to Visual Studio 2010 and performed the conversion on a project that worked great in VS2008. In Visual Studio 2010, itβs not so sunny.
This is a .Net 2.0 WinForms project that makes heavy use of binding ListViews and Grids to shared lists, so retrieving shared lists is not possible.
I get the following error message (anonymous for publication purposes):
Could not find a type for a name. The type name was
'System.Collections.Generic.List`1[[MyAttribute, Domain, Version=1.0.0.5,
Culture=neutral, PublicKeyToken=71c8708be064889a]], mscorlib, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089'. Line 134, position 5.
C:\Projects\MyProject\Control.resx
The problem goes away if I upload the project to .net 4.0, but this project should target .net 2.0 so that there is no suitable long-term solution.
Google google offers a lot of messages from people / having / a problem, but none of them see people who solved the problem, so any help would be greatly appreciated.
That.