I have a project / dll
, which has a folder with set of C# classes
, which need to be converted to XSD file
. I have used xsd.exe
tool bundled up with .Net framework to do it, but challenge remains, I cannot add specific C# types / classes to be part of XSD file either it picks up every class in binary, using the following command:
xsd <exe / dll>
or if I do the following, I can at most supply one class / type:
xsd <exe / dll> /t:<TypeName>
Any way to add specific C# classes, which I want to be part of XSD, as I cannot find a viable solution