C#
C# analysis is available in all editions of SonarQube.
Language-specific properties
Discover and update the C#-specific Analysis parameters in: Administration > General Settings > Languages > C#.
Analyze generated code
To analyze tool-generated code (e.g. WCF code generated by SvcUtil.exe
, protobuf code generated by protoc
, Swagger client code generated by NSwag
) for a specific C# project, enable the "Analyze generated code" setting inside Project > Administration > General Settings > C#. By default, tool-generated code files are skipped from analysis.
The detection of generated code is based on file name, special comments and attributes. The currently recognized values are in GeneratedCodeRecognizer.cs.
Scanner compatibility
To analyze C# code, you need to use the SonarScanner for .NET version 4.x or newer.
Exclusions
Files to be excluded should be set in the project configuration. Excluded files are still going to be analyzed during the compilation and the results will be filtered according to the exclusion settings.
As an alternative, an .editorconfig
file can be used to disable the analysis for a specific rule on a file or directory. This can solve performance problems on large files.
[Path/File.cs]
dotnet_diagnostic.Sxxx.severity = none
Related pages
Importing third-party issues (VSTest, NUnit, MSTest, xUnit)
Importing third-party issues (See "Notes on external .NET issues")
.NET test coverage (Visual Studio Code Coverage, dotCover, OpenCover, Coverlet, Altcover)
Issue tracker
Check the issue tracker for this language.
Last updated
Was this helpful?