I recently checked out a large C# code base that I will be doing some work with, and converted the project(s) from VS2005 to VS2008. On building the solution, I seem to have generated a bunch of designer.cs files that do not belong there. I am now getting class re-declared errors. Note the designer.cs (and the associated resx files) have been generatated from classes that are just plain old C# classes, that should not have a designer attached at all.
I can delete these files and that fixes the problem, the issue is I have 500+ of these (from a code base of approx 14000 files) so this is going to be a painful process to work out the false ones and delete. More importantly I want to know why / how this happened.
Any ideas?