resharper-to-codeclimate
1.0.11
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
dotnet tool install --global resharper-to-codeclimate --version 1.0.11
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local resharper-to-codeclimate --version 1.0.11
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=resharper-to-codeclimate&version=1.0.11
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package resharper-to-codeclimate --version 1.0.11
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
resharper-to-codeclimate
converts an xml file containing resharper inspectcode results to a json file that follows the code climate spec.
note, currently only converts to the subset of the code climate spec required for gitlab-ci.
usage
dotnet tool install -g resharper-to-codeclimate
resharper-to-codeclimate results.xml results.json
example .gitlab-ci.yml
variables:
DOTNET_PACKAGES: '$CI_PROJECT_DIR\.nuget\packages'
DOTNET_CLI_HOME: '$CI_PROJECT_DIR\.dotnet'
DOTNET_NOLOGO: 'true'
codequality:
stage: codequality
script:
- dotnet tools restore
- jb inspectcode Project.sln -o=results.xml
- resharper-to-codeclimate results.xml results.json
cache:
key:
files:
- .config/dotnet-tools.json
paths:
- .nuget/
artifacts:
when: always
reports:
codequality:
- results.json
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
Added .net8 support