-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCodeCoverage.config
More file actions
21 lines (21 loc) · 880 Bytes
/
Copy pathCodeCoverage.config
File metadata and controls
21 lines (21 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<CodeCoverage>
<ModulePaths>
<Exclude>
<!-- The Roslyn testing harness embeds its PDBs, so it gets instrumented even though it
is third-party code. Most other dependencies (including xunit) are already left out,
either for lack of symbols or by the built-in default exclusions. -->
<ModulePath>.*\.Testing\.dll$</ModulePath>
</Exclude>
</ModulePaths>
<Sources>
<Exclude>
<!-- Source-generated code is not hand-written, so covering it is not meaningful. The Lightup
wrappers and the resource accessors are emitted below Lightup\.generated, because the
analyzer project sets EmitCompilerGeneratedFiles. -->
<Source>.*\\\.generated\\.*</Source>
</Exclude>
</Sources>
</CodeCoverage>
</Configuration>