-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathcoverlet.runsettings
More file actions
28 lines (25 loc) · 1.16 KB
/
Copy pathcoverlet.runsettings
File metadata and controls
28 lines (25 loc) · 1.16 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
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="XPlat code coverage">
<Configuration>
<Format>cobertura</Format>
<!--
Source-generated code is excluded: it is the generator's output, and
measuring it tells us about the generator's branches rather than about
our tests. The generator itself is tested by snapshot tests (WP-5).
-->
<ExcludeByAttribute>Obsolete,GeneratedCodeAttribute,CompilerGeneratedAttribute,ExcludeFromCodeCoverageAttribute</ExcludeByAttribute>
<Exclude>[*]System.Text.RegularExpressions.Generated.*</Exclude>
<!-- Test assemblies must never count toward their own coverage. -->
<ExcludeByFile>**/obj/**/*.g.cs,**/obj/generated/**/*.cs</ExcludeByFile>
<SingleHit>false</SingleHit>
<UseSourceLink>true</UseSourceLink>
<SkipAutoProps>true</SkipAutoProps>
<DeterministicReport>true</DeterministicReport>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>