I have got a single c# file, (a plugin for a CAD software) and have to extend it. Someone wrote the original in Visual Studio, and just copied everything into a single file. It contains everything, even the "required method for designer support".
My question is, how could I tell Visual Studio that this single file contains everything, and enable the form designer?
I tried to create a new solution from the file, added all the obscure dll references and what not, but have no idea how to go about the form designer. Also tried to add a new form, and overwrite it with code extracts from the aggregate source file, but I don't understand how it should work.