-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverlet.runsettings
More file actions
65 lines (55 loc) · 2.28 KB
/
coverlet.runsettings
File metadata and controls
65 lines (55 loc) · 2.28 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
<?xml version="1.0" encoding="utf-8" ?>
<RunSettings>
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="XPlat Code Coverage">
<Configuration>
<!-- Coverage output formats: cobertura for CI, opencover for tools, lcov for editors -->
<Format>cobertura,opencover,lcov</Format>
<!-- Include only the main project -->
<Include>[DebuggerMcp]*</Include>
<!-- Exclude test project and generated code -->
<Exclude>
[DebuggerMcp.Tests]*,
[*]*.DbgEngInterop,
[*]DbgEng
</Exclude>
<!-- Exclude specific attributes -->
<ExcludeByAttribute>
Obsolete,
GeneratedCodeAttribute,
CompilerGeneratedAttribute,
ExcludeFromCodeCoverage
</ExcludeByAttribute>
<!-- Exclude specific files -->
<ExcludeByFile>
**/DbgEngInterop.cs
</ExcludeByFile>
<!-- Include test assemblies -->
<IncludeTestAssembly>false</IncludeTestAssembly>
<!-- Single hit coverage (faster) -->
<SingleHit>false</SingleHit>
<!-- Use source link for proper file paths -->
<UseSourceLink>true</UseSourceLink>
<!-- Skip auto-generated code -->
<SkipAutoProps>true</SkipAutoProps>
<!-- Deterministic report (for CI reproducibility) -->
<!--
NOTE: OpenCover reporter does not support deterministic reports.
If deterministic output is required, remove 'opencover' from <Format>.
-->
<DeterministicReport>false</DeterministicReport>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
<InProcDataCollectionRunSettings>
<InProcDataCollectors>
<InProcDataCollector
assemblyQualifiedName="Coverlet.Collector.DataCollection.CoverletInProcDataCollector, coverlet.collector, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null"
friendlyName="XPlat Code Coverage"
enabled="True"
codebase="coverlet.collector.dll" />
</InProcDataCollectors>
</InProcDataCollectionRunSettings>
</RunSettings>