There are several XSD and WSDL. I want to generate C # code. I used svcutil.exe, but it does not generate XML comments from XSD annotations:
<annotation> <documentation>VERY USEFULL DOCUMENTATION</documentation> </annotation>
I want this inline file:
public class SomeData {
Another question: how to make svcutil.exe generate one file for each class? (I know that I can use refactoring from Resharper to move classes to separate files, but I don't like it)
So, how to generate multiple files (one file for each class) with XML comments from XSD and WSDL
source share