-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReferenceCopConfig.xsd
47 lines (47 loc) · 2 KB
/
ReferenceCopConfig.xsd
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="ReferenceCopConfig">
<xs:complexType>
<xs:sequence>
<xs:element name="Rules">
<xs:complexType>
<xs:sequence>
<xs:element name="AssemblyName" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string" />
<xs:element name="Description" type="xs:string" />
<xs:element name="Severity" type="xs:string" />
<xs:element name="Pattern" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ProjectTag" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string" />
<xs:element name="Description" type="xs:string" />
<xs:element name="Severity" type="xs:string" />
<xs:element name="FromProjectTag" type="xs:string" />
<xs:element name="ToProjectTag" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ProjectPath" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string" />
<xs:element name="Description" type="xs:string" />
<xs:element name="Severity" type="xs:string" />
<xs:element name="FromPath" type="xs:string" />
<xs:element name="ToPath" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>