-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathReferenceCopConfig.xsd
More file actions
49 lines (49 loc) · 2.09 KB
/
ReferenceCopConfig.xsd
File metadata and controls
49 lines (49 loc) · 2.09 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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="UseExperimentalDetectors" type="xs:boolean" minOccurs="0" />
<xs:element name="EnableDebugMessages" type="xs:boolean" minOccurs="0" />
<xs:element name="Rules">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="AssemblyName">
<xs:complexType>
<xs:all>
<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:all>
</xs:complexType>
</xs:element>
<xs:element name="ProjectTag">
<xs:complexType>
<xs:all>
<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:all>
</xs:complexType>
</xs:element>
<xs:element name="ProjectPath">
<xs:complexType>
<xs:all>
<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:all>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>