-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeCoverage.runsettings
More file actions
29 lines (29 loc) · 1.31 KB
/
CodeCoverage.runsettings
File metadata and controls
29 lines (29 loc) · 1.31 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
<?xml version="1.0" encoding="utf-8"?>
<!-- File name extension must be .runsettings -->
<RunSettings>
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="XPlat code coverage">
<Configuration>
<Format>cobertura</Format>
<Exclude>[xunit.*]*,[*Tests]*</Exclude> <!-- [Assembly-Filter]Type-Filter -->
<ExcludeByFile>**/test/**/*.cs,
**/src/EoaServer.Domain/**/*.cs,
**/src/EoaServer.Domain.Shared/**/*.cs,
**/src/EoaServer.EntityEventHandler.Core/**/*.cs,
**/src/EoaServer.EntityEventHandler/**/*.cs,
**/src/EoaServer.Application.Contracts/**/*.cs,
**/src/EoaServer.Application/Common/**/*.cs,
**/src/EoaServer.HttpApi*/**/*.cs,
**/src/EoaServer.Worker/**/*.cs,
**/src/EoaServer.DbMigrator/**/*.cs,
**/src/EoaServer.MongoDB/**/*.cs,
**/src/**/*.c.cs,
**/src/**/*.g.cs</ExcludeByFile>
<ExcludeByAttribute>Obsolete,GeneratedCodeAttribute</ExcludeByAttribute>
<SingleHit>false</SingleHit>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>