Skip to content

Commit 03d5060

Browse files
committed
Release 5.1.14
1 parent 2eba290 commit 03d5060

File tree

15 files changed

+221
-18
lines changed

15 files changed

+221
-18
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
solution: 'src\ReportGenerator.sln'
77
buildPlatform: Any CPU
88
buildConfiguration: Release
9-
version: 5.1.13
9+
version: 5.1.14
1010
dotnetSDKVersion: 7.0.102
1111
nodeVersion: 18
1212

docs/resources/reports/index.html

+203
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta http-equiv="X-UA-Compatible" content="IE=EDGE,chrome=1" />
8+
<link href="/favicon.ico" rel="icon" type="image/x-icon" />
9+
<title>Sample reports - ReportGenerator</title>
10+
<style>
11+
html {
12+
font-family: sans-serif;
13+
}
14+
15+
body {
16+
margin: 30px;
17+
padding: 0;
18+
}
19+
table {
20+
border-collapse: collapse;
21+
}
22+
td {
23+
border: 1px solid #000;
24+
padding: 5px;
25+
}
26+
tr td:first-child {
27+
min-width: 250px;
28+
}
29+
</style>
30+
</head>
31+
32+
<body>
33+
<div class="container">
34+
<h1>Sample reports</h1>
35+
<h2>HTML</h2>
36+
<table>
37+
<tr>
38+
<td><a href="Html/index.html">Html</a></td>
39+
<td>The default output format. Creates a summary overview (index.html) and detailed reports for each
40+
class.</td>
41+
</tr>
42+
<tr>
43+
<td><a href="Html_Light/index.html">Html_Light</a></td>
44+
<td>Same as Html but with a light theme.</td>
45+
</tr>
46+
<tr>
47+
<td><a href="Html_Dark/index.html">Html_Dark</a></td>
48+
<td>Same as Html but with a dark theme.</td>
49+
</tr>
50+
<tr>
51+
<td><a href="HtmlSummary/summary.html">HtmlSummary</a></td>
52+
<td>Creates a single HTML file (summary.html) without links.</td>
53+
</tr>
54+
<tr>
55+
<td><a href="HtmlChart/CoverageHistory.html">HtmlChart</a></td>
56+
<td>Creates a single HTML file containing a chart with historic coverage information.</td>
57+
</tr>
58+
<tr>
59+
<td><a href="HtmlInline/index.html">HtmlInline</a></td>
60+
<td>Same as HTML but CSS and JavaScript is included in every HTML page. This results in larger file
61+
sizes, but can be useful for integration into build servers like Azure DevOps (VSTS), since they may
62+
block referenced CSS and JavaScript files.</td>
63+
</tr>
64+
<tr>
65+
<td><a href="HtmlInline_AzurePipelines/index.html">HtmlInline_AzurePipelines</a></td>
66+
<td>Same as HtmlInline but with an adaptive light/dark theme matching the look and feel of Azure
67+
Pipelines</td>
68+
</tr>
69+
<tr>
70+
<td><a href="HtmlInline_AzurePipelines_Light/index.html">HtmlInline_AzurePipelines_Light</a>
71+
</td>
72+
<td>Same as HtmlInline but with a light theme matching the look and feel of Azure Pipelines.</td>
73+
</tr>
74+
<tr>
75+
<td><a href="HtmlInline_AzurePipelines_Dark/index.html">HtmlInline_AzurePipelines_Dark</a>
76+
</td>
77+
<td>Same as HtmlInline but with a dark theme matching the look and feel of Azure Pipelines.</td>
78+
</tr>
79+
<tr>
80+
<td><a href="MHtml/Summary.mht">MHtml</a></td>
81+
<td>Same as HTML but packaged into a single MHTML file.</td>
82+
</tr>
83+
</table>
84+
85+
<h2>Clover</h2>
86+
<table>
87+
<tr>
88+
<td><a href="Clover/Clover.xml">Clover</a></td>
89+
<td>Creates a XML file in Clover format. This format integrates with tools like Atlassian Bamboo.</td>
90+
</tr>
91+
</table>
92+
93+
<h2>Cobertura</h2>
94+
<table>
95+
<tr>
96+
<td><a href="Cobertura/Cobertura.xml">Cobertura</a></td>
97+
<td>Creates a XML file in Cobertura format. This format integrates with tools like Azure DevOps (VSTS)
98+
or Jenkins.</td>
99+
</tr>
100+
</table>
101+
102+
<h2>SonarQube</h2>
103+
<table>
104+
<tr>
105+
<td><a href="SonarQube/SonarQube.xml">SonarQube</a></td>
106+
<td>Creates a XML file in SonarQube 'Generic Test Data' format.</td>
107+
</tr>
108+
</table>
109+
110+
<h2>lcov</h2>
111+
<table>
112+
<tr>
113+
<td><a href="lcov/lcov.info">lcov</a></td>
114+
<td>Creates a text file in 'lcov' format.</td>
115+
</tr>
116+
</table>
117+
118+
<h2>TeamCity</h2>
119+
<table>
120+
<tr>
121+
<td>TeamCitySummary</td>
122+
<td>Command line output interpreted by TeamCity.</td>
123+
</tr>
124+
</table>
125+
126+
<h2>XML</h2>
127+
<table>
128+
<tr>
129+
<td><a href="Xml/Summary.xml">XML</a></td>
130+
<td>Creates a XML file containing a summary for all classes and detailed reports for each class.</td>
131+
</tr>
132+
<tr>
133+
<td><a href="XmlSummary/Summary.xml">XMLSummary</a></td>
134+
<td>Creates a single XML file containing a summary for all classes.</td>
135+
</tr>
136+
</table>
137+
138+
<h2>Latex</h2>
139+
<table>
140+
<tr>
141+
<td><a href="Summary/Summary.tex">Latex</a></td>
142+
<td>Creates a single TEX file containing a summary for all classes and detailed reports for each class.
143+
</td>
144+
</tr>
145+
<tr>
146+
<td><a href="LatexSummary/Summary.tex">LatexSummary</a></td>
147+
<td>Creates a single TEX file containing a summary for all classes.</td>
148+
</tr>
149+
</table>
150+
151+
<h2>Markdown</h2>
152+
<table>
153+
<tr>
154+
<td><a href="MarkdownSummary/Summary.md">MarkdownSummary</a></td>
155+
<td>Creates a single Markdown file containing coverage information per class.</td>
156+
</tr>
157+
<tr>
158+
<td><a href="MarkdownSummaryGithub/Summary.md">MarkdownSummaryGithub</a></td>
159+
<td>Creates a single Markdown file containing coverage information per class. The report is optimized
160+
for GitHub.</td>
161+
</tr>
162+
<tr>
163+
<td><a href="MarkdownDeltaSummary/DeltaSummary.md">MarkdownDeltaSummary</a></td>
164+
<td>Creates a single Markdown file containing delta coverage information.</td>
165+
</tr>
166+
</table>
167+
168+
<h2>Text</h2>
169+
<table>
170+
<tr>
171+
<td><a href="TextSummary/Summary.txt">TextSummary</a></td>
172+
<td>Creates a single TXT file containing coverage information per class.</td>
173+
</tr>
174+
<tr>
175+
<td><a href="TextDeltaSummary/DeltaSummary.txt">TextDeltaSummary</a></td>
176+
<td>Creates a single TXT file containing delta coverage information.</td>
177+
</tr>
178+
</table>
179+
180+
<h2>Other</h2>
181+
<table>
182+
<tr>
183+
<td><a href="JsonSummary/Summary.json">JsonSummary</a></td>
184+
<td>Creates a single JSON file containing a summary for all classes.</td>
185+
</tr>
186+
187+
<tr>
188+
<td><a href="CsvSummary/Summary.csv">CsvSummary</a></td>
189+
<td>Creates a single CSV file containing coverage information per class.</td>
190+
</tr>
191+
<tr>
192+
<td><a href="PngChart/CoverageHistory.png">PngChart</a></td>
193+
<td>Creates a single PNG file containing a chart with historic coverage information.</td>
194+
</tr>
195+
<tr>
196+
<td><a href="Badges/index.html">Badges</a></td>
197+
<td>Creates SVGs and PNGs files that show line and/or branch coverage information.</td>
198+
</tr>
199+
</table>
200+
</div>
201+
</body>
202+
203+
</html>

src/AzureDevopsTask/ReportGenerator/task.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"version": {
1414
"Major": 5,
1515
"Minor": 1,
16-
"Patch": 13
16+
"Patch": 14
1717
},
1818
"instanceNameFormat": "ReportGenerator",
1919
"groups": [

src/AzureDevopsTask/vss-extension.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "reportgenerator",
44
"name": "ReportGenerator",
5-
"version": "5.1.13",
5+
"version": "5.1.14",
66
"publisher": "Palmmedia",
77
"public": true,
88
"targets": [

src/Deployment/logo_64.png

-605 Bytes
Loading

src/Deployment/logo_global_64.png

-16 Bytes
Loading

src/Deployment/logo_plugin_64.png

25 Bytes
Loading

src/Deployment/nuget/ReportGenerator.Core.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage</desc
2525
<dependencies>
2626
<group targetFramework="netstandard2.0">
2727
<dependency id="Microsoft.Extensions.Configuration" version="7.0.0" />
28-
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.1" />
28+
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.2" />
2929
<dependency id="Microsoft.Extensions.Configuration.CommandLine" version="7.0.0" />
3030
<dependency id="Microsoft.Extensions.Configuration.Json" version="7.0.0" />
3131
<dependency id="SixLabors.ImageSharp.Drawing" version="1.0.0-beta15" />
@@ -34,7 +34,7 @@ https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage</desc
3434

3535
<group targetFramework="netcoreapp">
3636
<dependency id="Microsoft.Extensions.Configuration" version="7.0.0" />
37-
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.1" />
37+
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.2" />
3838
<dependency id="Microsoft.Extensions.Configuration.CommandLine" version="7.0.0" />
3939
<dependency id="Microsoft.Extensions.Configuration.Json" version="7.0.0" />
4040
<dependency id="SixLabors.ImageSharp.Drawing" version="1.0.0-beta15" />

src/ReportGenerator.Console.NetCore/ReportGenerator.Console.NetCore.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<AssemblyName>ReportGenerator</AssemblyName>
88
<RootNamespace>Palmmedia.ReportGenerator</RootNamespace>
99
<StartupObject>Palmmedia.ReportGenerator.Console.NetCore.Program</StartupObject>
10-
<AssemblyVersion>5.1.13.0</AssemblyVersion>
11-
<FileVersion>5.1.13.0</FileVersion>
10+
<AssemblyVersion>5.1.14.0</AssemblyVersion>
11+
<FileVersion>5.1.14.0</FileVersion>
1212
</PropertyGroup>
1313

1414
<ItemGroup>

src/ReportGenerator.Core.Test/ReportGenerator.Core.Test.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<TargetFramework>net7.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<RootNamespace>Palmmedia.ReportGenerator.Core.Test</RootNamespace>
7-
<AssemblyVersion>5.1.13.0</AssemblyVersion>
8-
<FileVersion>5.1.13.0</FileVersion>
7+
<AssemblyVersion>5.1.14.0</AssemblyVersion>
8+
<FileVersion>5.1.14.0</FileVersion>
99
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1010
</PropertyGroup>
1111

src/ReportGenerator.Core/ReportGenerator.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
88
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
99
<AssemblyName>ReportGenerator.Core</AssemblyName>
10-
<AssemblyVersion>5.1.13.0</AssemblyVersion>
11-
<FileVersion>5.1.13.0</FileVersion>
10+
<AssemblyVersion>5.1.14.0</AssemblyVersion>
11+
<FileVersion>5.1.14.0</FileVersion>
1212
</PropertyGroup>
1313

1414
<PropertyGroup>

src/ReportGenerator.DotnetCorePluginLoader/ReportGenerator.DotnetCorePluginLoader.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
44
<RootNamespace>ReportGenerator.DotnetCorePluginLoader</RootNamespace>
5-
<AssemblyVersion>5.1.13.0</AssemblyVersion>
6-
<FileVersion>5.1.13.0</FileVersion>
5+
<AssemblyVersion>5.1.14.0</AssemblyVersion>
6+
<FileVersion>5.1.14.0</FileVersion>
77
<GenerateDocumentationFile>True</GenerateDocumentationFile>
88
</PropertyGroup>
99

src/ReportGenerator.DotnetGlobalTool/ReportGenerator.DotnetGlobalTool.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<AssemblyName>ReportGenerator</AssemblyName>
88
<RootNamespace>Palmmedia.ReportGenerator</RootNamespace>
99
<StartupObject>Palmmedia.ReportGenerator.DotnetGlobalTool.Program</StartupObject>
10-
<AssemblyVersion>5.1.13.0</AssemblyVersion>
11-
<FileVersion>5.1.13.0</FileVersion>
10+
<AssemblyVersion>5.1.14.0</AssemblyVersion>
11+
<FileVersion>5.1.14.0</FileVersion>
1212
</PropertyGroup>
1313

1414
<ItemGroup>

src/ReportGenerator.MSBuild/ReportGenerator.MSBuild.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<RootNamespace>Palmmedia.ReportGenerator.MSBuild</RootNamespace>
66
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
8-
<AssemblyVersion>5.1.13.0</AssemblyVersion>
9-
<FileVersion>5.1.13.0</FileVersion>
8+
<AssemblyVersion>5.1.14.0</AssemblyVersion>
9+
<FileVersion>5.1.14.0</FileVersion>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

src/build.proj

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<!-- Version, adjust before build -->
2424
<PropertyGroup>
25-
<Version>5.1.13</Version>
25+
<Version>5.1.14</Version>
2626
</PropertyGroup>
2727

2828
<!-- Tools -->

0 commit comments

Comments
 (0)