...
Create a 'sonar-project.propeties' file and place it in the same folder as the Solution file (".sln").
Here is the simplest 'sonar-project.properties' file that you can write to be able to run a Sonar analysis on your project:Code Block title sonar-project.properties language html/xml # Project identification sonar.projectKey=com.mycompany:myCSharpApplication sonar.projectVersion=1.0-SNAPSHOT sonar.projectName=My C# Application # Info required for Sonar sonar.sources=. sonar.language=csRun the following command from your Solution folder:
Code Block language none sonar-runner
...

