Update
I want to generate C# classes files to be used as WCF service based on *.xsd files. How can I achieve that?
Update
I want to generate C# classes files to be used as WCF service based on *.xsd files. How can I achieve that?
Copyright © 2021 Jogjafile Inc.
Simply try:
where
<xsd_file>
is the path to the XSD file. As John Saunders mentioned, read the command-line syntax and available command options usingsvcutil /?
. This tool does have a lot of functionality, so read carefully.Also, remember to use the Windows SDK Command Prompt instead of the standard Command Prompt to execute this tool.