How to check XML file for schema using Visual Studio 2005

Can I validate an xml file against its associated schema using the Visual Studio 2005 IDE?

I could only see options to create a diagram based on the current file, or show XSLT output

alt text

+3
source share
2 answers

This is done automatically, errors are displayed as warnings in the "error list" and are additionally emphasized by a blue creak in the source file.

Not sure if there is another way to check the file, but this will do for now.

+5
source

XmlSchemaValidator

Warning: This is not very convenient to use.

0
source

Source: https://habr.com/ru/post/1696759/


All Articles