将 XML 文件验证为构建事件
我想知道是否有一种方法可以在预构建事件中验证 XML 文件,以便我可以在应用程序启动之前返回并修复问题。
我知道(并使用)代码在应用程序启动上验证 XML 文件,作为序列化的一部分 (XmlReaderSettings 与 ValidationEventHandler),但我想要在应用程序开始运行之前验证 XML 的某种方法。
这可能吗?
提前致谢。
I was wondering if there was a way to validate XML files as part of a pre-build event, so that I can go back and fix the problem before the app starts up.
I'm aware of (and use) code to validate XML files on application startup as part of serialization (XmlReaderSettings with ValidationEventHandler), but I'd like some way of validating the XML before the app starts running.
Is this possible?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
构建文件中 msbuildtasks 中提供的脚本任务可能足以进行验证。
Probably a script task provided in msbuildtasks in your build file may be sufficient for validating.