Skip to content

Commit

Permalink
Improve SonarQube Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
twenzel committed Oct 1, 2024
1 parent 3b25cf3 commit c26990e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ Task("SonarBegin")
Login = sonarLogin,
UseCoreClr = true,
VsTestReportsPath = testResultsPath.ToString(),
OpenCoverReportsPath = codeCoverageResultFilePath.ToString()
OpenCoverReportsPath = codeCoverageResultFilePath.ToString(),
ArgumentCustomization = args => args.Append("/d:sonar.scanner.skipJreProvisioning=true")
.Append("/d:sonar.scanner.scanAll=false") // disable Multi-Language analysis
});
});

Expand Down

0 comments on commit c26990e

Please sign in to comment.