├── .gitattributes ├── .gitignore ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── ValidateFetchXmlAgainstSchema.csproj ├── ValidateFetchXmlAgainstSchema.sln └── fetch.xsd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/validate-fetchXml-against-schema/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/validate-fetchXml-against-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/validate-fetchXml-against-schema/HEAD/App.config -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/validate-fetchXml-against-schema/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/validate-fetchXml-against-schema/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ValidateFetchXmlAgainstSchema.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/validate-fetchXml-against-schema/HEAD/ValidateFetchXmlAgainstSchema.csproj -------------------------------------------------------------------------------- /ValidateFetchXmlAgainstSchema.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/validate-fetchXml-against-schema/HEAD/ValidateFetchXmlAgainstSchema.sln -------------------------------------------------------------------------------- /fetch.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/validate-fetchXml-against-schema/HEAD/fetch.xsd --------------------------------------------------------------------------------