views:

25

answers:

1

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.

+1  A: 

Probably a script task provided in msbuildtasks in your build file may be sufficient for validating.

Filburt
Thanks! I guess it's time to put msbuildtasks back in.
Dan Atkinson