Hi
I got some type of form designer where I could open up
a .net form (done with reflection in run time so I'm
not using design time environment or anything) move
controls around and finally save the form. What it really
saves is an xml file where controls properties are binary
serialized. Next time I open up the form I could just load
this this xml file deserialize properties and assign them
to corresponding objects. Now the problem is the controls
that I have are the custom controls inherited from dotnet
ones, and we have a total build process that runs everyday
and changes versions of these controls. So we are using
simple binary serialization (doesn't include versions).
This is fine if you don't have another version of .net
framework in gac. What would you suggest here?