-
Notifications
You must be signed in to change notification settings - Fork 2
/
FodyWeavers.xsd
68 lines (68 loc) · 3.33 KB
/
FodyWeavers.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<!-- This file was generated by Fody. Manual changes to this file will be lost when your project is rebuilt. -->
<xs:element name="Weavers">
<xs:complexType>
<xs:all>
<xs:element name="NullGuard" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:attribute name="IncludeDebugAssert" type="xs:boolean">
<xs:annotation>
<xs:documentation>Used to control whether asserts are added into debug builds or not.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Mode">
<xs:annotation>
<xs:documentation>The operation mode of NullGuard.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="AutoDetect">
<xs:annotation>
<xs:documentation>Automatically detect the mode by the usage of JetBrains.Annotations.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Implicit">
<xs:annotation>
<xs:documentation>In implicit mode everything is assumed to be not-null, unless attributed with [AllowNull].</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Explicit">
<xs:annotation>
<xs:documentation>In explicit mode everything is assumed to be nullable, unless attributed with [NotNull].</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="NullableReferenceTypes">
<xs:annotation>
<xs:documentation>Use C# 8 nullable reference type annotations.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ExcludeRegex" type="xs:string">
<xs:annotation>
<xs:documentation>A regular expression to specify the names of a classes to exclude from NullGuard.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:all>
<xs:attribute name="VerifyAssembly" type="xs:boolean">
<xs:annotation>
<xs:documentation>'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="VerifyIgnoreCodes" type="xs:string">
<xs:annotation>
<xs:documentation>A comma-separated list of error codes that can be safely ignored in assembly verification.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="GenerateXsd" type="xs:boolean">
<xs:annotation>
<xs:documentation>'false' to turn off automatic generation of the XML Schema file.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:schema>