Created
November 8, 2016 03:05
-
-
Save ayseff/2e28818302dd5928cd38325ba10a2479 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" | |
targetNamespace="urn:packages" xmlns="urn:packages"> | |
<xs:element name="packages"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="package" maxOccurs="unbounded"> | |
<xs:complexType> | |
<xs:attribute name="id" type="xs:string" use="required" /> | |
<xs:attribute name="version" type="xs:string" use="required" /> | |
<xs:attribute name="targetFramework" type="xs:string" use="optional" /> | |
<xs:attribute name="allowedVersions" type="xs:string" use="optional" /> | |
</xs:complexType> | |
</xs:element> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment