I have a source file which causes the static code analysis build to fail because of a bug in Microsofts Code Analysis. It was described in another question.
This is why I want to exclude it from analysis in SonarQube. I added the Exclusion in Administration / General Settings / Analysis Scope / Files / Source File Exclusions.
The value I added is
**/Helper/ReportPrintingOrderDriver.cs
Unfortunately that does not stop the build from failing. The file is still analyzed even with the exclusion.
What can I do to exclude this file from analysis?