Skip to content

Commit 14c862a

Browse files
committed
Release 5.1.21
1 parent 5b7823d commit 14c862a

File tree

21 files changed

+113
-29
lines changed

21 files changed

+113
-29
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ env:
66
solution: 'src\ReportGenerator.sln'
77
buildPlatform: Any CPU
88
buildConfiguration: Release
9-
version: 5.1.20
10-
dotnetSDKVersion: 7.0.203
9+
version: 5.1.21
10+
dotnetSDKVersion: 7.0.302
1111
nodeVersion: 18
1212

1313
jobs:
@@ -41,7 +41,7 @@ jobs:
4141
- name: 'Show dotnet version'
4242
run: dotnet --version
4343

44-
- name: 'Use NuGet 5.x'
44+
- name: 'Use NuGet 6.x'
4545
uses: nuget/setup-nuget@v1
4646

4747
- name: 'NuGet Restore'
@@ -155,7 +155,7 @@ jobs:
155155
run: nuget pack src/Deployment/nuget/ReportGenerator.nuspec -OutputDirectory src/target/packages -Version ${{ env.Version }}
156156

157157
- name: 'Chocolatey pack reportgenerator.portable'
158-
run: .$env:USERPROFILE\.nuget\packages\chocolatey\0.10.14\tools\chocolateyInstall\choco.exe pack src/Deployment/chocolatey/reportgenerator.portable.nuspec --outputdirectory=src/target/packages --version=${{ env.Version }}
158+
run: .$env:USERPROFILE\.nuget\packages\chocolatey\1.4.0\tools\chocolateyInstall\choco.exe pack src/Deployment/chocolatey/reportgenerator.portable.nuspec --outputdirectory=src/target/packages --version=${{ env.Version }}
159159

160160
- name: 'Publish Artifact: packages'
161161
uses: actions/upload-artifact@v3
@@ -184,7 +184,7 @@ jobs:
184184
run: msbuild .\build.proj /t:Restore
185185
working-directory: src
186186

187-
- name: 'Use NuGet 5.x'
187+
- name: 'Use NuGet 6.x'
188188
uses: nuget/setup-nuget@v1
189189

190190
- uses: actions/download-artifact@v3

docs/main.526b20fde383e6c8.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "7.0.203",
3+
"version": "7.0.302",
44
"rollForward": "latestMajor"
55
}
66
}

src/AzureDevopsTask/ReportGenerator/task.json

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

src/AzureDevopsTask/vss-extension.json

Lines changed: 1 addition & 1 deletion
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.20",
5+
"version": "5.1.21",
66
"publisher": "Palmmedia",
77
"public": true,
88
"targets": [
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# ReportGenerator - *ReportGenerator.Core*
2+
ReportGenerator converts coverage reports generated by coverlet, OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov or lcov into human readable reports in various formats. The reports show the coverage quotas and also visualize which lines of your source code have been covered.
3+
4+
## Available packages
5+
6+
|**Package**|**Platforms**|**Installation/Usage**|
7+
|:----------|:------------|:---------------------|
8+
|[ReportGenerator](https://www.nuget.org/packages/ReportGenerator)|.NET Core<br/>.NET Framework 4.7|Use this package if your project is based on *.NET Framework* or *.NET Core* and you want to use *ReportGenerator* via the command line or a build script.|
9+
|[dotnet-reportgenerator-globaltool](https://www.nuget.org/packages/dotnet-reportgenerator-globaltool)|.NET Core|Use this package if your project is based on *.NET Core* and you want to use *ReportGenerator* as a (global) 'DotnetTool'.|
10+
|[ReportGenerator.Core](https://www.nuget.org/packages/ReportGenerator.Core)|.NET Standard 2.0|Use this package if you want to write a custom **plugin** for *ReportGenerator* or if you want to call/execute *ReportGenerator* within your code base.|
11+
12+
## Create a plugin
13+
- [Custom reports](https://github.com/danielpalme/ReportGenerator/wiki/Custom-reports)
14+
- [Custom history storage](https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage)

src/Deployment/nuget/Readme_ReportGenerator.Core.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
DESCRIPTION
1313

14-
This package is only suited to create plugins for ReportGenerator.
14+
Use this package if you want to write a custom plugin for ReportGenerator
15+
or if you want to call/execute ReportGenerator within your code base.
1516

1617
https://github.com/danielpalme/ReportGenerator/wiki/Custom-reports
1718
https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# ReportGenerator
2+
ReportGenerator converts coverage reports generated by coverlet, OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov or lcov into human readable reports in various formats. The reports show the coverage quotas and also visualize which lines of your source code have been covered.
3+
4+
## Available packages
5+
6+
|**Package**|**Platforms**|**Installation/Usage**|
7+
|:----------|:------------|:---------------------|
8+
|[ReportGenerator](https://www.nuget.org/packages/ReportGenerator)|.NET Core<br/>.NET Framework 4.7|Use this package if your project is based on *.NET Framework* or *.NET Core* and you want to use *ReportGenerator* via the command line or a build script.|
9+
|[dotnet-reportgenerator-globaltool](https://www.nuget.org/packages/dotnet-reportgenerator-globaltool)|.NET Core|Use this package if your project is based on *.NET Core* and you want to use *ReportGenerator* as a (global) 'DotnetTool'.|
10+
|[ReportGenerator.Core](https://www.nuget.org/packages/ReportGenerator.Core)|.NET Standard 2.0|Use this package if you want to write a custom **plugin** for *ReportGenerator* or if you want to call/execute *ReportGenerator* within your code base.|
11+
12+
## Usage
13+
14+
### .NET Core
15+
```
16+
dotnet $(UserProfile)\.nuget\packages\reportgenerator\5.1.21\tools\net6.0\ReportGenerator.dll [options]
17+
$(UserProfile)\.nuget\packages\reportgenerator\5.1.21\tools\net6.0\ReportGenerator.exe [options]
18+
```
19+
20+
### .NET Framework
21+
```
22+
$(UserProfile)\.nuget\packages\reportgenerator\5.1.21\tools\net47\ReportGenerator.exe [options]
23+
```
24+
25+
## Additional information
26+
- [Get started](https://reportgenerator.io/getstarted)
27+
- [Command line parameters](https://reportgenerator.io/usage)
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# ReportGenerator - *dotnet-reportgenerator-globaltool*
2+
ReportGenerator converts coverage reports generated by coverlet, OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov or lcov into human readable reports in various formats. The reports show the coverage quotas and also visualize which lines of your source code have been covered.
3+
4+
## Available packages
5+
6+
|**Package**|**Platforms**|**Installation/Usage**|
7+
|:----------|:------------|:---------------------|
8+
|[ReportGenerator](https://www.nuget.org/packages/ReportGenerator)|.NET Core<br/>.NET Framework 4.7|Use this package if your project is based on *.NET Framework* or *.NET Core* and you want to use *ReportGenerator* via the command line or a build script.|
9+
|[dotnet-reportgenerator-globaltool](https://www.nuget.org/packages/dotnet-reportgenerator-globaltool)|.NET Core|Use this package if your project is based on *.NET Core* and you want to use *ReportGenerator* as a (global) 'DotnetTool'.|
10+
|[ReportGenerator.Core](https://www.nuget.org/packages/ReportGenerator.Core)|.NET Standard 2.0|Use this package if you want to write a custom **plugin** for *ReportGenerator* or if you want to call/execute *ReportGenerator* within your code base.|
11+
12+
## Usage
13+
14+
### Installation
15+
```
16+
dotnet tool install --global dotnet-reportgenerator-globaltool --version 5.1.21
17+
18+
dotnet tool install dotnet-reportgenerator-globaltool --tool-path tools --version 5.1.21
19+
20+
dotnet new tool-manifest
21+
dotnet tool install dotnet-reportgenerator-globaltool --version 5.1.21
22+
```
23+
24+
### Execution
25+
```
26+
reportgenerator [options]
27+
tools\reportgenerator.exe [options]
28+
dotnet reportgenerator [options]
29+
```
30+
31+
## Additional information
32+
- [Get started](https://reportgenerator.io/getstarted)
33+
- [Command line parameters](https://reportgenerator.io/usage)

src/Deployment/nuget/ReportGenerator.Core.nuspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Use this package if you want to write a custom plugin for ReportGenerator or if
1919
Plugin development:
2020
https://github.com/danielpalme/ReportGenerator/wiki/Custom-reports
2121
https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage</description>
22+
<readme>README.md</readme>
2223
<language>en-US</language>
2324
<tags>Code Coverage Reporting Testing TDD Utility</tags>
2425
<repository type="git" url="https://github.com/danielpalme/ReportGenerator.git" />
@@ -47,6 +48,7 @@ https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage</desc
4748
<file src="..\logo_plugin_64.png" target="icon.png" />
4849
<file src="..\..\..\LICENSE.txt" target="LICENSE.txt" />
4950
<file src="Readme_ReportGenerator.Core.txt" target="Readme.txt" />
51+
<file src="Readme_ReportGenerator.Core.md" target="Readme.md" />
5052

5153
<!-- Plugin development -->
5254
<file src="..\..\ReportGenerator.Core\bin\Release\ReportGenerator.Core.deps.json" target="lib\netstandard2.0\" />

0 commit comments

Comments
 (0)