See more information in the output window (SonarLint).
Note sure what the oupur window it is refering to. I get this issue in Visual Studio 2015 when binding a project to sonarqube
Failed to bind the solution to SonarQube project, try again. See more information in the output window (SonarLint). Server side is at version 5.6.3 and was recently upgraded.
I've re-installed the plugin, tested on several workstations. No luck.
-- update : found this log SonarQube request failed: Response status code does not indicate success: 500 (Internal Server Error). Failed to download quality profile. Name: 'Sonar way', Key: 'cs-sonar-way-15069', Language: 'C#'
-- update #2 And I can confirm my quality profile is available - same ID http://mysonarserver/profiles/show?key=cs-sonar-way-15069
here is my log on server side.
Fail to process request http://mysonarserver/api/qualityprofiles/export?name=Sonar+way&language=cs&exporterKey=roslyn-cs java.lang.NullPointerException: null value
<?xml version="1.0" encoding="utf-8"?> <RoslynExportProfile Version="1.0"> <Configuration> <RuleSet Name="Rules for SonarQube" Description="This rule set was automatically generated from SonarQube." ToolsVersion="14.0"> <Rules AnalyzerId="SonarAnalyzer.CSharp" RuleNamespace="SonarAnalyzer.CSharp"> <Rule Id="S3869" Action="Warning" /> [...] </Rules> </RuleSet> <AdditionalFiles>
– BinaryConstruct