I am using XSD\'s to define my DTO types in C#. I am using XSD.exe to gen the classes from the XSD\'s.
I have a Common.xsd that defines an Address type and I want to use
You can use XSD.exe with multiple file arguments:
XSD.exe
xsd .\XSD\Common.xsd .\XSD\Employee.xsd .\XSD\Company.xsd /c /o:. /n:"DomainModel"