-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathCodeCoverage.runsettings
49 lines (44 loc) · 2.21 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<!-- File name extension must be .runsettings -->
<RunSettings>
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="Code Coverage" uri="datacollector://Microsoft/CodeCoverage/2.0" assemblyQualifiedName="Microsoft.VisualStudio.Coverage.DynamicCoverageDataCollector, Microsoft.VisualStudio.TraceCollector, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Configuration>
<CodeCoverage>
<!--
About include/exclude lists:
Empty "Include" clauses imply all; empty "Exclude" clauses imply none.
Each element in the list is a regular expression (ECMAScript syntax). See http://msdn.microsoft.com/library/2k3te2cs.aspx.
An item must first match at least one entry in the include list to be included.
Included items must then not match any entries in the exclude list to remain included.
-->
<!-- Match assembly file paths: -->
<ModulePaths>
<Include>
<ModulePath>.*\\netcoreapp2\.1\\System\.Activities\.dll$</ModulePath>
<ModulePath>.*\\netcoreapp2\.1\\UiPath\.Workflow\.dll$</ModulePath>
<ModulePath>.*\\netcoreapp2\.1\\System\.Xaml\.dll$</ModulePath>
</Include>
<!-- <Exclude>
<ModulePath>.*System\.Xaml.*</ModulePath>
</Exclude> -->
</ModulePaths>
<!-- Match the company name property in the assembly: -->
<!-- Commented as not all UiPath assemblies have the company specified in AssemlyInfo -->
<!-- <CompanyNames>
<Include>
<CompanyName>.*UiPath.*</CompanyName>
</Include>
</CompanyNames> -->
<!-- We recommend you do not change the following values: -->
<UseVerifiableInstrumentation>True</UseVerifiableInstrumentation>
<AllowLowIntegrityProcesses>True</AllowLowIntegrityProcesses>
<CollectFromChildProcesses>True</CollectFromChildProcesses>
<CollectAspDotNet>True</CollectAspDotNet>
</CodeCoverage>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>