I using the XSD.exe provided in Visual Studio Tools to generate classes from an XSD file. Currently all of the classes are generated in 1 CS file. Is it possible to have each class generated into separate CS files?
Asked
Active
Viewed 117 times
0
-
1Not as-is. You'd have to use some other tool to separate the classes. One drawback to doing that is it's easier to get the classes out-of-sync with the schema. – D Stanley Sep 18 '14 at 20:54
-
@DStanley Stanley"Good point. I hadn't thought about that. – tdbeckett Sep 18 '14 at 20:57