12
12
DESCRIPTION
13
13
14
14
ReportGenerator converts XML reports generated by PartCover , OpenCover
15
- or NCover into a readable HTML report.
16
- In contrast to the XSLT-Transformation included in PartCover , the
17
- report is more detailed.
18
- It does not only show the coverage quota , but also includes the source
19
- code and visualizes which line has been covered.
15
+ or NCover into a readable report in various formats.
16
+ The reports do not only show the coverage quota , but also include the
17
+ source code and visualize which line has been covered.
20
18
21
19
ReportGenerator supports merging several reports into one.
22
- If you pass several reports to ReportGenerator , the reports will be
23
- merged into one.
24
20
It is also possible to pass one XML file containing several reports to
25
21
ReportGenerator (e.g. a build log file).
26
22
27
- Several output formats are supported by ReportGenerator. The following
28
- report types can be generated:
23
+ The following output formats are supported by ReportGenerator:
29
24
30
25
-HTML , HTMLSummary
31
26
-XML , XMLSummary
32
27
-Latex , LatexSummary
33
28
34
- =======================================================================
35
-
36
- COMPATIBILITY
29
+ Compatibility:
37
30
38
31
OpenCover
39
32
PartCover 4.0
40
33
PartCover 2.2 , 2.3
34
+ Visual Studio
41
35
NCover (tested version 1.5.8 , other versions may not work)
42
36
37
+ Also available as NuGet package:
38
+ http://nuget.org/List/Packages/ReportGenerator
39
+
43
40
=======================================================================
44
41
45
42
LICENSE
@@ -54,6 +51,95 @@ For further details take a look at LICENSE.txt.
54
51
55
52
CHANGELOG
56
53
54
+ 1.7.1.0
55
+
56
+ * Fix: Issue # 9706: Trailing slashes in command line arguments
57
+
58
+ 1.7.0.0
59
+
60
+ * New: Issue # 9698: Added "coverbytest" support of OpenCover
61
+ * Fix: Issue # 9671: Reduced length of report filenames
62
+ * Fix: Reports can now be located in an UNC path
63
+
64
+ 1.6.1.0
65
+
66
+ * Fix: Issue # 9646: Unhandled IO-Exception when source directories
67
+ are supplied
68
+
69
+ 1.6.0.0
70
+
71
+ * New: Added support for Visual Studio coverage reports
72
+ * New: Issue # 9534: Added support for wildcards in report file
73
+ pattern
74
+ * Fix: OpenCoverParser supports coverage for methods that 'yield'
75
+ the result
76
+
77
+ 1.5.0.0
78
+
79
+ * Fix: Improved merging of metrics (now using full signature)
80
+ * Fix: Reduced memory usage during report generation
81
+
82
+ 1.4.1.0
83
+
84
+ * New: Added verbosity switch
85
+ * New: Added possibility to generate several output formats at once
86
+
87
+ 1.4.0.0
88
+
89
+ * Fix: Issue # 9372: Reduced memory usage
90
+
91
+ 1.3.0.0
92
+
93
+ * New: Added more report preprocessing to deal with auto properties
94
+ and source files that don't appear in OpenCover/PartCover
95
+ reports
96
+ * New: Added possibility to filter assemblies
97
+
98
+ 1.2.7.0
99
+
100
+ * Fix: Issue # 9266: Improved performance
101
+
102
+ 1.2.6.0
103
+
104
+ * Fix: Issue # 9141: Handling of same assembly in different
105
+ directories in OpenCoverParser
106
+
107
+ 1.2.5.0
108
+
109
+ * New: Excluded ignored classes from OpenCoverParser
110
+
111
+ 1.2.4.0
112
+
113
+ * Fix: Issue # 9065: Rounding of coverage quota down to the last
114
+ significant figure
115
+ * Fix: Issue # 9041: Merging reports doesn't work when the same
116
+ module is used from different paths
117
+
118
+ 1.2.3.0
119
+
120
+ * Fix: Issue # 8992: Improved HTML Summary (collapsing of classes)
121
+
122
+ 1.2.2.0
123
+
124
+ * Fix: Issue # 8931: Improved layout of Html reports
125
+ * Fix: Issue # 8958: Coverage for types with no sequence points
126
+ * Fix: Issue # 8936: Additional statistics for assemblies
127
+
128
+ 1.2.1.0
129
+
130
+ * Fix: Issue # 8653: NCover - OutOfMemoryException on a seqpoint with
131
+ a magic line
132
+ * Fix: Improved layout of Latex reports
133
+
134
+ 1.2.0.0
135
+
136
+ * New: Added support for OpenCover metrics
137
+ * New: Added support for AutoProperties in OpenCover/PartCover
138
+
139
+ 1.1.1.0
140
+
141
+ * Fix: Reports now saved with more unique filename
142
+
57
143
1.1.0.0
58
144
59
145
* New: Added support for OpenCover
@@ -112,11 +198,4 @@ CHANGELOG
112
198
113
199
0.1.0.0
114
200
115
- * New: Initial release
116
-
117
- =======================================================================
118
-
119
- KNOWN ISSUES
120
-
121
- The reports generated by PartCover do not contain enough information to
122
- correctly get the coverage of 'Auto Properties'.
201
+ * New: Initial release
0 commit comments