Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcode-analysis.ruleset
More file actions
Latest commit
79 lines (79 loc) · 3.73 KB
/
Copy pathcode-analysis.ruleset
File metadata and controls
79 lines (79 loc) · 3.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="utf-8"?>
<RuleSetName="Microsoft Managed Recommended Rules"Description="These rules focus on the most critical problems in your code, including potential security holes, application crashes, and other important logic and design errors. It is recommended to include this rule set in any custom rule set you create for your projects."ToolsVersion="16.0">
<LocalizationResourceAssembly="Microsoft.VisualStudio.CodeAnalysis.RuleSets.Strings.dll"ResourceBaseName="Microsoft.VisualStudio.CodeAnalysis.RuleSets.Strings.Localized">
<NameResource="MinimumRecommendedRules_Name" />
<DescriptionResource="MinimumRecommendedRules_Description" />
</Localization>
<RulesAnalyzerId="Microsoft.CodeAnalysis.NetAnalyzers"RuleNamespace="Microsoft.CodeAnalysis.NetAnalyzers">
<RuleId="CA1001"Action="Warning" />
<RuleId="CA1009"Action="Warning" />
<RuleId="CA1016"Action="Warning" />
<RuleId="CA1033"Action="Warning" />
<RuleId="CA1049"Action="Warning" />
<RuleId="CA1060"Action="Warning" />
<RuleId="CA1061"Action="Warning" />
<RuleId="CA1063"Action="Warning" />
<RuleId="CA1065"Action="Warning" />
<RuleId="CA1301"Action="Warning" />
<RuleId="CA1303"Action="Hidden" />
<RuleId="CA1400"Action="Warning" />
<RuleId="CA1401"Action="Warning" />
<RuleId="CA1403"Action="Warning" />
<RuleId="CA1404"Action="Warning" />
<RuleId="CA1405"Action="Warning" />
<RuleId="CA1410"Action="Warning" />
<RuleId="CA1415"Action="Warning" />
<RuleId="CA1821"Action="Warning" />
<RuleId="CA1900"Action="Warning" />
<RuleId="CA1901"Action="Warning" />
<RuleId="CA2002"Action="Warning" />
<RuleId="CA2100"Action="Warning" />
<RuleId="CA2101"Action="Warning" />
<RuleId="CA2108"Action="Warning" />
<RuleId="CA2111"Action="Warning" />
<RuleId="CA2112"Action="Warning" />
<RuleId="CA2114"Action="Warning" />
<RuleId="CA2116"Action="Warning" />
<RuleId="CA2117"Action="Warning" />
<RuleId="CA2122"Action="Warning" />
<RuleId="CA2123"Action="Warning" />
<RuleId="CA2124"Action="Warning" />
<RuleId="CA2126"Action="Warning" />
<RuleId="CA2131"Action="Warning" />
<RuleId="CA2132"Action="Warning" />
<RuleId="CA2133"Action="Warning" />
<RuleId="CA2134"Action="Warning" />
<RuleId="CA2137"Action="Warning" />
<RuleId="CA2138"Action="Warning" />
<RuleId="CA2140"Action="Warning" />
<RuleId="CA2141"Action="Warning" />
<RuleId="CA2146"Action="Warning" />
<RuleId="CA2147"Action="Warning" />
<RuleId="CA2149"Action="Warning" />
<RuleId="CA2200"Action="Warning" />
<RuleId="CA2202"Action="Warning" />
<RuleId="CA2207"Action="Warning" />
<RuleId="CA2212"Action="Warning" />
<RuleId="CA2213"Action="Warning" />
<RuleId="CA2214"Action="Warning" />
<RuleId="CA2216"Action="Warning" />
<RuleId="CA2220"Action="Warning" />
<RuleId="CA2229"Action="Warning" />
<RuleId="CA2231"Action="Warning" />
<RuleId="CA2232"Action="Warning" />
<RuleId="CA2235"Action="Warning" />
<RuleId="CA2236"Action="Warning" />
<RuleId="CA2237"Action="Warning" />
<RuleId="CA2238"Action="Warning" />
<RuleId="CA2240"Action="Warning" />
<RuleId="CA2241"Action="Warning" />
<RuleId="CA2242"Action="Warning" />
</Rules>
<RulesAnalyzerId="Microsoft.CodeQuality.Analyzers"RuleNamespace="Microsoft.CodeQuality.Analyzers">
<RuleId="CA1707"Action="Hidden" />
<RuleId="CA2007"Action="Error" />
</Rules>
<RulesAnalyzerId="Microsoft.NetCore.Analyzers"RuleNamespace="Microsoft.NetCore.Analyzers">
<RuleId="CA1303"Action="Hidden" />
</Rules>
</RuleSet>