I have an application that was started in C# 1.0 using Visual Studio .NET. As part of a partial rewrite/upgrade, I would like the application to take advantage of the form auto-scaling features in Windows Forms 2.0. Those features rely on setting the AutoScaleDimensions property, which is supposed to be done by the designer. New custom Forms that I add to the project are set up with the correct designer code, but all my existing forms and controls do not auto-generate this property, and thus do not get auto-scaled correctly. I believe this is because the old forms were created with the old VS2002 project format, where all designer-generated code gets dumped into the same file as user created code; modern WinForms applications, of course, get split into multiple files by VS.
My question: is there any known way to "upgrade" an old Windows Forms project to the modern Visual Studio formats? (The project files have been upgraded to VS2010 formats, but the forms themselves still utilize the mono-file format.) I would like VS to generate the AutoScaleDimensions property by default and not have to initialize the property by hand.