Create MULTIPLE class files based on an XSD

前端 未结 2 1656
别那么骄傲
别那么骄傲 2021-01-04 01:44

I may be attempting something that is not possible with the XSD tool but I wanted to ask before moving on to a simpler solution.

I have an XSD file that has multiple

2条回答
  •  情书的邮戳
    2021-01-04 02:12

    The problem I'm trying to solve was either in separate class files or one singular, but unique classes rather than the same namespace containing multiple classes. As a result, I was looking for a similar answer and found this reference to share Getting xsd.exe To Not Create Duplicate Classes

    This is a simple fix, but it took me a long time to figure out. You have to use xsd.exe to compile all of your classes at once, so rather than running two separate commands, you just need to run one: C:\Solution\Project>xsd.exe Types.xsd Request.xsd Response.xsd /c Now you have one file, Response.xsd, with all three classes in it.

提交回复
热议问题