Aloha
I received a few nice xsd files which I want to convert to classes (using xsd.exe) All the xsd's have the same includes, like this:
<xs:include schemaLocation="kstypes.xsd" />
<xs:include schemaLocation="ksparams.xsd" />
When I generate a class for each xsd the types declared in these files are duplicated for each original xsd. Is there any easy way to 1) only generate the types in the included xsd's once and 2) make sure all other classes use these types?
-Edoode