Automatically generate C# from XSD in Visual Studio IDE

前端 未结 2 1568
遇见更好的自我
遇见更好的自我 2020-12-23 16:41

I am running Visual Studio 2010. I have a XSD schema and want to use xsd.exe tool to generate appropriate C# file. I have done this successfully from a command

相关标签:
2条回答
  • 2020-12-23 17:07

    You can also add it as an external tool (click tools - external tools...) to visual studio (2015). Then just select the xsd schema in visual studio and click tools - xsd to generate the class file.

    Parameters:

    • Command: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.7.1 Tools\xsd.exe (replace with your version of FX tools)
    • Arguments: /c "$(ItemDir)$(ItemFileName)$(ItemExt)"
    • Initial directory: $(ItemDir)
    • Use Output window: yes
    0 讨论(0)
  • 2020-12-23 17:17

    You can check out Xsd2Code for a VS addin that does this interactively. The author is also working on a VS2010 version, as far as I know.

    alt text http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=Xsd2Code&DownloadId=41336

    0 讨论(0)
提交回复
热议问题