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.