-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcoverage.config
More file actions
24 lines (24 loc) · 924 Bytes
/
coverage.config
File metadata and controls
24 lines (24 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<IncludeTestAssembly>False</IncludeTestAssembly>
<CodeCoverage>
<Attributes>
<Exclude>
<Attribute>^System\.Diagnostics\.DebuggerHiddenAttribute$</Attribute>
<Attribute>^System\.Diagnostics\.DebuggerNonUserCodeAttribute$</Attribute>
<Attribute>^System\.CodeDom\.Compiler\.GeneratedCodeAttribute$</Attribute>
<Attribute>^System\.Diagnostics\.CodeAnalysis\.ExcludeFromCodeCoverageAttribute$</Attribute>
</Exclude>
</Attributes>
<Sources>
<Exclude>
<Source>.*\\.*\.Generated\.cs$</Source>
<Source>.*\\.*\.g\.cs$</Source>
<Source>.*\\.*_g\.cs$</Source>
<Source>.*\\Sandbox\.Migrations\\.*\.cs$</Source>
<Source>.*\\.*\.Tests\\.*\.cs$</Source>
<Source>.*\\.*\.IntegrationTests\\.*\.cs$</Source>
</Exclude>
</Sources>
</CodeCoverage>
</Configuration>