我的csproj中有一个xsd文件,xsd.exe会从中生成一个包装器cs文件。
我想以某种方式评论xsd文件,注释也会插入生成的包装类中,因此可以有效地使用VS intellisense。
这可以使用xsd.exe吗?
答案 0 :(得分:2)
显然这似乎不是possible with xsd.exe:
When generating source code from an XML Schema document,
Xsd.exe ignores the <appinfo> element and its contents.
The same is true for the parent of the <appinfo> element, <annotation>.
我尝试了,但是我没有找到任何方法强制xsd.exe吐出架构中包含的任何文档。
<强>更新强>
我将试用XsdDataContractImporter - 也许这可以更好地控制xsd架构的代码生成。