Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Some files not analyzed by Sonar "Invalid character encountered in file"

I have a couple of files that are not analyzed with the following message:

Invalid character encountered in file [file name with full path] at line 9 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.

In Visual Studio when I select File / Advance Save Options, the files were set to Western Europe (Windows) - Codepage 1252.

I changed it to Unicode (UTF-8 with Signature) - Codepage 65001.

But SonarQube still complains about the invalid characters. The "invalid characters" are comments in German with Umlaut-characters (ä,ö,ü)

What can I do to fix this (without removing the comments)?

like image 628
tobre Avatar asked Nov 12 '15 12:11

tobre


1 Answers

The SonarQube Scanner for MSBuild and the SonarQube C# plugin currently expect all files of the project to have the UTF-8 encoding - and this is hardcoded.

There is a ticket to improve this in a future version: https://jira.sonarsource.com/browse/SONARMSBRU-174

like image 51
Dinesh Bolkensteyn Avatar answered Oct 25 '22 22:10

Dinesh Bolkensteyn