Hi @siewers and @whiterabbit99
Indeed @siewers is right, I was a bit quick in thinking this was the same issue.
It looks like there is an error analyzing some Javascript files, which are now being automatically discovered by the scanner in its latest version.
Setting scanAll=false will indeed prevent said files from being analyzed, but it will also prevent any files other outside your dotnet solution from being analyzed. You can normally also use exclusions to ignore some files more precisely.
In this specific case, the files should have been excluded due to the sonar.exclusions=.Test/,/*.jpg,/.jpeg,**/.png,/*.gif,/.mp4,**/.pdf,/*.sql,/.js,cisiweb2/**
property.
If you are running on a linux-based agent, be careful with the case of your paths. I see here you indicated cisiweb2/**
but the folder is actually CISIWeb2
. This might be why you are seeing the error even though the folder was supposed to be excluded.
Try changing your property to sonar.exclusions=.Test/,/*.jpg,/.jpeg,**/.png,/*.gif,/.mp4,**/.pdf,/*.sql,/.js,CISIWeb2/**
Please let us know if changing the path solves the exclusion problem.
As for the error itself, I will refer this to the proper team.
Denis