resharper-to-codeclimate 1.0.11

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
nuke :add-package resharper-to-codeclimate --version 1.0.11

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 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.

Version Downloads Last updated
1.0.11 16,654 11/16/2023
1.0.10 7,404 9/19/2023
1.0.9 203 9/19/2023
1.0.8 28,247 11/11/2022
1.0.7 15,220 1/25/2022
1.0.6 4,944 11/8/2021
1.0.5 9,052 4/9/2021
1.0.4 381 4/9/2021
1.0.3 2,420 2/8/2021
1.0.2 3,322 11/26/2020
1.0.1 2,667 9/25/2020

Added .net8 support