Silverlight generation doesn't create necessary serialization attributes
description
Silverlight generation creates serialization attributes for collections, but not elements or attributes. If a collection element and a non-collection element appear in a sequence, each element needs an Order parameter defined. The collection gets [System.Xml.Serialization.XmlArrayAttribute(Order = 0)] but then the next element does not and serialization fails. I currently work around this by generating for .NET 4.0 and removing anything Silverlight can't handle (SerializableAttribute and DesignerCategoryAttribute for each class).