[ NOT READY FOR USE. IN ACTIVE DEVELOPMENT. ]
- XSD to code (xtc) will parse XSD schemas into managable JSON objects
- Then it will convert these objects into code (Step 1: C#)
npm install
node main.js input.xsd /o classes /n My.App /t csharp
or
var xtc = require('xsd-to-code');
xtc.convert({
inputFiles : [
'input.xsd'
],
generator : 'csharp',
output : 'classes'
}).then(() => {
console.log("we're done");
});