Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fagnercarvalho/84fa963b266d706ada60 to your computer and use it in GitHub Desktop.
Save fagnercarvalho/84fa963b266d706ada60 to your computer and use it in GitHub Desktop.
2016-02-05-SonarQube-configuration-tutorial
# Required metadata
sonar.projectKey=YourProject
sonar.projectName=YourProject
sonar.projectVersion=1.0
sonar.sourceEncoding=UTF-8
sonar.sources=D:/projects/SonarQube/YourProject
# C# specific configuration
sonar.dotnet.visualstudio.solution.file=YourProject.sln
sonar.dotnet.excludeGeneratedCode=true
sonar.host.url=http://localhost:9000
sonar.jdbc.url=jdbc:sqlserver://localhost;databaseName=SonarQube;integratedSecurity=true
sonar.jdbc.username=username
sonar.jdbc.password=password
sonar.web.port=9000
sonar.jdbc.url=jdbc:sqlserver://localhost;databaseName=SonarQube;integratedSecurity=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment