-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcoverlet.runsettings
26 lines (23 loc) · 1.08 KB
/
coverlet.runsettings
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
<?xml version="1.0" encoding="utf-8" ?>
<RunSettings>
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="XPlat code coverage">
<Configuration>
<Format>json,cobertura,lcov,teamcity,opencover</Format>
<Exclude>[*.Tests]*,[*.Benchmark]*</Exclude> <!-- [Assembly-Filter] Type-Filter -->
<!--<Include>[coverlet.*]*,[*]Coverlet.Core*</Include>--> <!-- [Assembly-Filter]Type-Filter -->
<ExcludeByAttribute>Obsolete,GeneratedCodeAttribute,CompilerGeneratedAttribute</ExcludeByAttribute>
<!-- FILE EXCLUSIONS -->
<ExcludeByFile>**/examples/**/*</ExcludeByFile> <!-- Recursive glob pattern -->
<!-- TEST ASSEMBLY SETTINGS -->
<IncludeTestAssembly>false</IncludeTestAssembly> <!-- Exclude test projects -->
<!-- OPTIMIZATION FLAGS -->
<SingleHit>false</SingleHit>
<UseSourceLink>true</UseSourceLink>
<SkipAutoProps>true</SkipAutoProps>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>