forked from EUCPilots/vcredist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVisualCRedistributables.xsd
More file actions
31 lines (31 loc) · 1.45 KB
/
VisualCRedistributables.xsd
File metadata and controls
31 lines (31 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Redistributables">
<xs:annotation>
<xs:documentation>https://support.microsoft.com/en-gb/help/2977003/the-latest-supported-visual-c-downloads</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Platform" maxOccurs="unbounded" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Redistributable" maxOccurs="unbounded" minOccurs="0">
<xs:complexType>
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element type="xs:string" name="Name"/>
<xs:element type="xs:string" name="ShortName"/>
<xs:element type="xs:string" name="URL"/>
<xs:element type="xs:string" name="ProductCode"/>
<xs:element type="xs:string" name="Download"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="Architecture" use="optional"/>
<xs:attribute type="xs:short" name="Release" use="optional"/>
<xs:attribute type="xs:string" name="Install" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>