https://github.com/mganss/xmlvalidator
Validate XML files against XML schemas.
https://github.com/mganss/xmlvalidator
Last synced: 7 months ago
JSON representation
Validate XML files against XML schemas.
- Host: GitHub
- URL: https://github.com/mganss/xmlvalidator
- Owner: mganss
- License: mit
- Created: 2015-03-19T16:18:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-23T16:17:26.000Z (over 10 years ago)
- Last Synced: 2025-01-07T21:24:12.191Z (9 months ago)
- Language: C#
- Size: 156 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# XmlValidator
XmlValidator is a commandline tool to validate XML files against one or more XML schema files (.xsd files). It exposes the validation capabilities built into the .NET Framework, [XmlSchemaSet](https://msdn.microsoft.com/en-us/library/system.xml.schema.xmlschemaset.aspx) and [XmlReader](https://msdn.microsoft.com/en-us/library/system.xml.xmlreader.aspx) in particular.
## Usage
```
Usage: XmlValidator [OPTIONS]+ xmlFile...
Validate XML files against XML schemas.
xmlFiles may contain globs, e.g. "content\{xml,files}\**\*.xml".Options:
-h, --help show this message and exit
-s, --schema=VALUE XML Schemas to validate against (may contain globs,
may occur more than once for multiple schemas).
-w, --warn also report warnings
```