forked from dotnet/arcade-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CodeCoverage.runsettings
43 lines (43 loc) · 2.03 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
<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>
<ModulePaths>
<Include>
<ModulePath>.*\.dll$</ModulePath>
<ModulePath>.*\.exe$</ModulePath>
</Include>
<Exclude>
<ModulePath>.*moq\.dll$</ModulePath>
<ModulePath>.*fluentassertions\.dll$</ModulePath>
<ModulePath>.*microsoft\.extensions\.logging\.applicationinsights\.dll$</ModulePath>
<ModulePath>.*libgit2sharp\.dll$</ModulePath>
<ModulePath>.*quartz\.dll$</ModulePath>
<ModulePath>.*git[a-f0-9-]*\.dll$</ModulePath>
<ModulePath>.*tests\.dll$</ModulePath>
<ModulePath>.*\.testadapter\.dll$</ModulePath>
<!-- This is all generated code -->
<ModulePath>.*microsoft\.dotnet\.maestro\.client\.dll$</ModulePath>
</Exclude>
</ModulePaths>
<Functions>
<Exclude>
<Function>Maestro\.Data\.Migrations..*</Function>
</Exclude>
</Functions>
<Attributes>
<Exclude>
<!-- Don't forget "Attribute" at the end of the name -->
<Attribute>^System\.Diagnostics\.DebuggerNonUserCodeAttribute$</Attribute>
<Attribute>^System\.CodeDom\.Compiler\.GeneratedCodeAttribute$</Attribute>
<Attribute>^System\.Diagnostics\.CodeAnalysis\.ExcludeFromCodeCoverageAttribute$</Attribute>
</Exclude>
</Attributes>
</CodeCoverage>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>