-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotCoverConfig.xml
More file actions
58 lines (50 loc) · 1.9 KB
/
Copy pathdotCoverConfig.xml
File metadata and controls
58 lines (50 loc) · 1.9 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
<?xml version="1.0" encoding="utf-8"?>
<CoverageParams>
<!--<Output> Path to the resulting coverage report. </Output> -->
<ReportType>HTML</ReportType>
<!-- Remove auto-implemented properties from report. -->
<HideAutoProperties>True</HideAutoProperties>
<!-- Remove specified files from report. Ant-style patterns are supported here.
<ExcludeFileMasks>
<Mask>ProjectFolder/**/*.generated.cs</Mask>
<Mask>ProjectFolder/**/*.tmp.cs</Mask>
</ExcludeFileMasks>
-->
<!-- Allows including not loaded assemblies in the specified scope into coverage results. Ant-style patterns are supported here.
<Scope>
<ScopeEntry>ProjectFolder/**/*.dll</ScopeEntry>
<ScopeEntry>ProjectFolder/**/*.exe</ScopeEntry>
</Scope>
-->
<!-- Coverage filters. It's possible to use asterisks as wildcard symbols. -->
<Filters>
<IncludeFilters>
<FilterEntry>
<ModuleMask>Michaelvsk.*</ModuleMask>
<!-- <ClassMask> Class mask </ClassMask> -->
<!-- <FunctionMask> Function mask </FunctionMask> -->
</FilterEntry>
</IncludeFilters>
<ExcludeFilters>
<FilterEntry>
<ModuleMask>Michaelvsk.GameDb.Models</ModuleMask>
<FunctionMask>get_*</FunctionMask>
</FilterEntry>
</ExcludeFilters>
</Filters>
<!-- Attribute filters. It's possible to use asterisks as wildcard symbols. -->
<AttributeFilters>
<!-- <AttributeFilterEntry> Attribute class mask </AttributeFilterEntry> -->
<AttributeFilterEntry>System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute</AttributeFilterEntry>
</AttributeFilters>
<!-- Process Filters. It's possible to use asterisks as wildcard symbols.
<ProcessFilters>
<IncludeFilters>
<ProcessMask>SampleProcess*</ProcessMask>
</IncludeFilters>
<ExcludeFilters>
<ProcessMask>SampleProcess.exe</ProcessMask>
</ExcludeFilters>
</ProcessFilters>
-->
</CoverageParams>