I got an relative complex xml file, which i want to use as a template for my serialization and deserialization. Because it might change and grow over time, i kinda hoped that i could rely on the generation of the code via xsd.exe or svcutil.exe. But sadly iam not able to get it working easily inside Xamarin AND UWP. UWP doesnt seem to support the default xml stuff, so i had to go with svcutil.exe to get a file with DataContract-Attributes.
The problem is in Xamarin the System.Runtime.Serialization.XmlSerializableServices.AdDefaultSchema() method is missing and in UWP the whole class System.Runtime.Serialization.XmlSerializableServices is missng.
Is there a way to automatically generate the code for Xamarin and UWP? If not what would be another way to achieve a easy way of parsing an xml in both systems or should i just do it by myself?