EDIT:
To answer the updated question, then it doesn't seem like Xsd2Code was designed to process multiple .xsd files at a time.
I compile this from:
Pascal Cabanel seems to be pretty active on the Xsd2Code CodePlex website. Consider contacting him for a specific answer:
http://www.codeplex.com/site/users/view/pcabanel
- I will leave my preview. answer below
xsd2Code, .xsd "", / Xsd2CodeCustomTool " ".
"" .xsd , include.
Person.xsd, Employees.xsd include -ing Person.xsd Person.
- , Employees.xsd Person.xsd, Xsd2Code Employees.xsd.
Person.xsd
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="CommonNamespace"
xmlns="CommonNamespace"
>
<xs:complexType name="Person">
<xs:sequence>
<xs:element name="Name" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
Employees.xsd
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="CommonNamespace"
xmlns="CommonNamespace"
>
<xs:include schemaLocation="Person.xsd"/>
<xs:element name="Employees">
<xs:complexType>
<xs:sequence>
<xs:element name="Employee" type="Person" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>