I just started a project where I need to create a class to map all XML attributes from an XSD file. For those ones with a few attributes, it can be done manually. For those with a lot of attributes it will take some time to create the class.
I found I can use XSD tool link to achieve this. In fact, I was able to generate a class from an XSD file. However, it was using the command prompt in Windows.
CMD line:
C:\XSD path..\xsd myXSDFile.xsd /classes
where XSD path for SDK 8 and later (link for more info)
There is an an additional FX version subdirectory:
%programfiles(x86)%\Microsoft SDKs\Windows\{ver}\bin\{FXVer} Tools
Any one knows if the same can be achieve from Mac OS? Is there a way to use XSD tool in this OS? or a similar tool that we can use?