Skip to content

Commit

Permalink
Release 5.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Jan 18, 2023
1 parent 2eba290 commit 03d5060
Show file tree
Hide file tree
Showing 15 changed files with 221 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
solution: 'src\ReportGenerator.sln'
buildPlatform: Any CPU
buildConfiguration: Release
version: 5.1.13
version: 5.1.14
dotnetSDKVersion: 7.0.102
nodeVersion: 18

Expand Down
203 changes: 203 additions & 0 deletions docs/resources/reports/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE,chrome=1" />
<link href="/favicon.ico" rel="icon" type="image/x-icon" />
<title>Sample reports - ReportGenerator</title>
<style>
html {
font-family: sans-serif;
}

body {
margin: 30px;
padding: 0;
}
table {
border-collapse: collapse;
}
td {
border: 1px solid #000;
padding: 5px;
}
tr td:first-child {
min-width: 250px;
}
</style>
</head>

<body>
<div class="container">
<h1>Sample reports</h1>
<h2>HTML</h2>
<table>
<tr>
<td><a href="Html/index.html">Html</a></td>
<td>The default output format. Creates a summary overview (index.html) and detailed reports for each
class.</td>
</tr>
<tr>
<td><a href="Html_Light/index.html">Html_Light</a></td>
<td>Same as Html but with a light theme.</td>
</tr>
<tr>
<td><a href="Html_Dark/index.html">Html_Dark</a></td>
<td>Same as Html but with a dark theme.</td>
</tr>
<tr>
<td><a href="HtmlSummary/summary.html">HtmlSummary</a></td>
<td>Creates a single HTML file (summary.html) without links.</td>
</tr>
<tr>
<td><a href="HtmlChart/CoverageHistory.html">HtmlChart</a></td>
<td>Creates a single HTML file containing a chart with historic coverage information.</td>
</tr>
<tr>
<td><a href="HtmlInline/index.html">HtmlInline</a></td>
<td>Same as HTML but CSS and JavaScript is included in every HTML page. This results in larger file
sizes, but can be useful for integration into build servers like Azure DevOps (VSTS), since they may
block referenced CSS and JavaScript files.</td>
</tr>
<tr>
<td><a href="HtmlInline_AzurePipelines/index.html">HtmlInline_AzurePipelines</a></td>
<td>Same as HtmlInline but with an adaptive light/dark theme matching the look and feel of Azure
Pipelines</td>
</tr>
<tr>
<td><a href="HtmlInline_AzurePipelines_Light/index.html">HtmlInline_AzurePipelines_Light</a>
</td>
<td>Same as HtmlInline but with a light theme matching the look and feel of Azure Pipelines.</td>
</tr>
<tr>
<td><a href="HtmlInline_AzurePipelines_Dark/index.html">HtmlInline_AzurePipelines_Dark</a>
</td>
<td>Same as HtmlInline but with a dark theme matching the look and feel of Azure Pipelines.</td>
</tr>
<tr>
<td><a href="MHtml/Summary.mht">MHtml</a></td>
<td>Same as HTML but packaged into a single MHTML file.</td>
</tr>
</table>

<h2>Clover</h2>
<table>
<tr>
<td><a href="Clover/Clover.xml">Clover</a></td>
<td>Creates a XML file in Clover format. This format integrates with tools like Atlassian Bamboo.</td>
</tr>
</table>

<h2>Cobertura</h2>
<table>
<tr>
<td><a href="Cobertura/Cobertura.xml">Cobertura</a></td>
<td>Creates a XML file in Cobertura format. This format integrates with tools like Azure DevOps (VSTS)
or Jenkins.</td>
</tr>
</table>

<h2>SonarQube</h2>
<table>
<tr>
<td><a href="SonarQube/SonarQube.xml">SonarQube</a></td>
<td>Creates a XML file in SonarQube 'Generic Test Data' format.</td>
</tr>
</table>

<h2>lcov</h2>
<table>
<tr>
<td><a href="lcov/lcov.info">lcov</a></td>
<td>Creates a text file in 'lcov' format.</td>
</tr>
</table>

<h2>TeamCity</h2>
<table>
<tr>
<td>TeamCitySummary</td>
<td>Command line output interpreted by TeamCity.</td>
</tr>
</table>

<h2>XML</h2>
<table>
<tr>
<td><a href="Xml/Summary.xml">XML</a></td>
<td>Creates a XML file containing a summary for all classes and detailed reports for each class.</td>
</tr>
<tr>
<td><a href="XmlSummary/Summary.xml">XMLSummary</a></td>
<td>Creates a single XML file containing a summary for all classes.</td>
</tr>
</table>

<h2>Latex</h2>
<table>
<tr>
<td><a href="Summary/Summary.tex">Latex</a></td>
<td>Creates a single TEX file containing a summary for all classes and detailed reports for each class.
</td>
</tr>
<tr>
<td><a href="LatexSummary/Summary.tex">LatexSummary</a></td>
<td>Creates a single TEX file containing a summary for all classes.</td>
</tr>
</table>

<h2>Markdown</h2>
<table>
<tr>
<td><a href="MarkdownSummary/Summary.md">MarkdownSummary</a></td>
<td>Creates a single Markdown file containing coverage information per class.</td>
</tr>
<tr>
<td><a href="MarkdownSummaryGithub/Summary.md">MarkdownSummaryGithub</a></td>
<td>Creates a single Markdown file containing coverage information per class. The report is optimized
for GitHub.</td>
</tr>
<tr>
<td><a href="MarkdownDeltaSummary/DeltaSummary.md">MarkdownDeltaSummary</a></td>
<td>Creates a single Markdown file containing delta coverage information.</td>
</tr>
</table>

<h2>Text</h2>
<table>
<tr>
<td><a href="TextSummary/Summary.txt">TextSummary</a></td>
<td>Creates a single TXT file containing coverage information per class.</td>
</tr>
<tr>
<td><a href="TextDeltaSummary/DeltaSummary.txt">TextDeltaSummary</a></td>
<td>Creates a single TXT file containing delta coverage information.</td>
</tr>
</table>

<h2>Other</h2>
<table>
<tr>
<td><a href="JsonSummary/Summary.json">JsonSummary</a></td>
<td>Creates a single JSON file containing a summary for all classes.</td>
</tr>

<tr>
<td><a href="CsvSummary/Summary.csv">CsvSummary</a></td>
<td>Creates a single CSV file containing coverage information per class.</td>
</tr>
<tr>
<td><a href="PngChart/CoverageHistory.png">PngChart</a></td>
<td>Creates a single PNG file containing a chart with historic coverage information.</td>
</tr>
<tr>
<td><a href="Badges/index.html">Badges</a></td>
<td>Creates SVGs and PNGs files that show line and/or branch coverage information.</td>
</tr>
</table>
</div>
</body>

</html>
2 changes: 1 addition & 1 deletion src/AzureDevopsTask/ReportGenerator/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"version": {
"Major": 5,
"Minor": 1,
"Patch": 13
"Patch": 14
},
"instanceNameFormat": "ReportGenerator",
"groups": [
Expand Down
2 changes: 1 addition & 1 deletion src/AzureDevopsTask/vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "reportgenerator",
"name": "ReportGenerator",
"version": "5.1.13",
"version": "5.1.14",
"publisher": "Palmmedia",
"public": true,
"targets": [
Expand Down
Binary file modified src/Deployment/logo_64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/Deployment/logo_global_64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/Deployment/logo_plugin_64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/Deployment/nuget/ReportGenerator.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage</desc
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.Extensions.Configuration" version="7.0.0" />
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.1" />
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.2" />
<dependency id="Microsoft.Extensions.Configuration.CommandLine" version="7.0.0" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="7.0.0" />
<dependency id="SixLabors.ImageSharp.Drawing" version="1.0.0-beta15" />
Expand All @@ -34,7 +34,7 @@ https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage</desc

<group targetFramework="netcoreapp">
<dependency id="Microsoft.Extensions.Configuration" version="7.0.0" />
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.1" />
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.2" />
<dependency id="Microsoft.Extensions.Configuration.CommandLine" version="7.0.0" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="7.0.0" />
<dependency id="SixLabors.ImageSharp.Drawing" version="1.0.0-beta15" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<AssemblyName>ReportGenerator</AssemblyName>
<RootNamespace>Palmmedia.ReportGenerator</RootNamespace>
<StartupObject>Palmmedia.ReportGenerator.Console.NetCore.Program</StartupObject>
<AssemblyVersion>5.1.13.0</AssemblyVersion>
<FileVersion>5.1.13.0</FileVersion>
<AssemblyVersion>5.1.14.0</AssemblyVersion>
<FileVersion>5.1.14.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<TargetFramework>net7.0</TargetFramework>
<IsPackable>false</IsPackable>
<RootNamespace>Palmmedia.ReportGenerator.Core.Test</RootNamespace>
<AssemblyVersion>5.1.13.0</AssemblyVersion>
<FileVersion>5.1.13.0</FileVersion>
<AssemblyVersion>5.1.14.0</AssemblyVersion>
<FileVersion>5.1.14.0</FileVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions src/ReportGenerator.Core/ReportGenerator.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AssemblyName>ReportGenerator.Core</AssemblyName>
<AssemblyVersion>5.1.13.0</AssemblyVersion>
<FileVersion>5.1.13.0</FileVersion>
<AssemblyVersion>5.1.14.0</AssemblyVersion>
<FileVersion>5.1.14.0</FileVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
<RootNamespace>ReportGenerator.DotnetCorePluginLoader</RootNamespace>
<AssemblyVersion>5.1.13.0</AssemblyVersion>
<FileVersion>5.1.13.0</FileVersion>
<AssemblyVersion>5.1.14.0</AssemblyVersion>
<FileVersion>5.1.14.0</FileVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<AssemblyName>ReportGenerator</AssemblyName>
<RootNamespace>Palmmedia.ReportGenerator</RootNamespace>
<StartupObject>Palmmedia.ReportGenerator.DotnetGlobalTool.Program</StartupObject>
<AssemblyVersion>5.1.13.0</AssemblyVersion>
<FileVersion>5.1.13.0</FileVersion>
<AssemblyVersion>5.1.14.0</AssemblyVersion>
<FileVersion>5.1.14.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/ReportGenerator.MSBuild/ReportGenerator.MSBuild.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<RootNamespace>Palmmedia.ReportGenerator.MSBuild</RootNamespace>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AssemblyVersion>5.1.13.0</AssemblyVersion>
<FileVersion>5.1.13.0</FileVersion>
<AssemblyVersion>5.1.14.0</AssemblyVersion>
<FileVersion>5.1.14.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<!-- Version, adjust before build -->
<PropertyGroup>
<Version>5.1.13</Version>
<Version>5.1.14</Version>
</PropertyGroup>

<!-- Tools -->
Expand Down

0 comments on commit 03d5060

Please sign in to comment.