2

I am running sonarqube msbuild runner on my build server and I am able to begin analysis and build the project but when I end I am getting below meassage

enter image description here

Pascal Berger
  • 4,262
  • 2
  • 30
  • 54
Prashant Mohite
  • 758
  • 2
  • 7
  • 19
  • If I remember correctly, VS2012 used MSBuild v4.0 which doesn't include the *ImportBefore* mechanism that is used to include the *SonarQube Scanner for MSBuild* integration targets. Try building with a later version of VS, or explicitly import the integration targets into your project. – duncanp Jan 11 '16 at 11:19

1 Answers1

1

Which C# plugin version are you using? The latest version (4.4) suggests using MSBuild 12.0 or higher, as well as by running it from Developer Command Prmopt for VS2013

user1282343
  • 11
  • 1
  • 3