forked from microsoft/vstest
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vstest-codecoverage.runsettings
38 lines (36 loc) · 1.59 KB
/
vstest-codecoverage.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
27
28
29
30
31
32
33
34
35
36
37
38
<RunSettings>
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="Code Coverage" uri="datacollector://Microsoft/CodeCoverage/2.0">
<Configuration>
<CodeCoverage>
<!-- Match assembly file paths: -->
<ModulePaths>
<Exclude>
<ModulePath>.*Tests.dll</ModulePath>
<ModulePath>.*msvcr.*dll$</ModulePath>
<ModulePath>.*msvcp.*dll$</ModulePath>
<ModulePath>.*clr.dll$</ModulePath>
<ModulePath>.*clr.ni.dll$</ModulePath>
<ModulePath>.*clrjit.dll$</ModulePath>
<ModulePath>.*clrjit.ni.dll$</ModulePath>
<ModulePath>.*mscoree.dll$</ModulePath>
<ModulePath>.*mscoreei.ni.dll$</ModulePath>
<ModulePath>.*mscorlib.dll$</ModulePath>
<ModulePath>.*mscorlib.ni.dll$</ModulePath>
<ModulePath>.*cryptbase.dll$</ModulePath>
<ModulePath>.*bcryptPrimitives.dll$</ModulePath>
<ModulePath>.*CodeCoverage.exe$</ModulePath>
</Exclude>
</ModulePaths>
<!-- We recommend you do not change the following values: -->
<UseVerifiableInstrumentation>True</UseVerifiableInstrumentation>
<AllowLowIntegrityProcesses>True</AllowLowIntegrityProcesses>
<CollectFromChildProcesses>True</CollectFromChildProcesses>
<CollectAspDotNet>False</CollectAspDotNet>
</CodeCoverage>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>