When will there be support for .Net Core 3 in SonarScanner for Azure DevOps?

here is the workaround I used for the mean time! may help others.

  1. Install .net sdk 2.x (using .NET Core Tool Installer)
  2. Prepare Analysis Configuration
  3. Install .net sdk 3.x (using .NET Core Tool Installer)
  4. Build your application (which is targeting netcore3.x)
  5. Test your application (which is targeting netcore3.x)
  6. Install .net sdk 2.x (using .NET Core Tool Installer)
  7. Run Code Analysis
  8. Publish Quality Gate Result

verify in SonarQube project the analysis as part of build is posted.

1 Like