xsd.exe 生成的包装类中的 .xsd 注释
我的 csproj 中有一个 xsd 文件,xsd.exe 从中生成一个包装器 cs 文件。
我想以某种方式注释 xsd 文件,注释也会插入到生成的包装类中,以便可以有效地使用 VS intellisense。
使用 xsd.exe 可以吗?
I have an xsd file in my csproj, from which xsd.exe generates a wrapper cs file.
I'd like to comment the xsd file in a way, that the comments are also inserted into the generated wrapper class, so VS intellisense can be used effectively.
Is this possible using xsd.exe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然这似乎不是 可以使用 xsd.exe:
我尝试过,但没有找到任何方法来强制 xsd.exe 吐出架构中包含的任何文档。
更新
我将尝试XsdDataContractImporter - 也许这可以更好地控制从 xsd 模式生成代码。
Apparently this seems to be not possible with xsd.exe:
I tried and I didn't find any way to force xsd.exe to spit out any documentation contained in the schema.
UPDATE
I will try out XsdDataContractImporter - maybe this offers more control over code generation from xsd schema.