No analysable projects were found - Azure DevOps/Self hosted agent
I created a Azure DevOps Build pipeline for a .NET Core solution and tried to configure the SonarQube in the build but endup with errors. I followed the steps from the link - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Extension+for+VSTS-TFS
WARNING: File 'C:***DocumentDBRepository.CS' is not located under the root directory 'C:VSTSAgent_work1s' and will not be analyzed.
No analysable projects were found. SonarQube analysis will not be performed. Check the build summary report for details.
In the Prepare analysis on SonarQube task - I choose the "Integrate with MSBuild" option.
The path it was referring to execute was the c:VSTSTask_work1s. But the sourcecode was in a different location - C:MaaS
Now I added the Advanced -> additional properties section, I added the below
sonar.exclusions=**/*.bin
sonar.cs.vscoveragexml.reportsPaths=**/*.coveragexml
sonar.projectBaseDir=C:maas
After adding the changes I see the same error.
I also choose the Use standalone scanner and choose - "Store configuration with my source code" and included the sonar-project.properties file in the root location of the solution.
I used the link - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+MSBuild
15:18:22.955 ERROR: Error during SonarQube Scanner execution
java.lang.IllegalStateException: Unable to load component class org.sonar.scanner.scan.ProjectLock
at org.sonar.core.platform.ComponentContainer$ExtendedDefaultPicoContainer.getComponent(ComponentContainer.java:64)
at org.picocontainer.DefaultPicoContainer.getComponent(DefaultPicoContainer.java:678)
at org.sonar.core.platform.ComponentContainer.getComponentByType(ComponentContainer.java:265)
at org.sonar.scanner.scan.ProjectScanContainer.doBeforeStart(ProjectScanContainer.java:118)
I also tried "manually provide configuration" option, but I end up with the same error.
Version details
Azure DevOps
SonarQube - Onpremises v 6.7.1
Self hosted agent - Windows 2016
dotnet-sonarscanner v 4.5.0


add a comment |
I created a Azure DevOps Build pipeline for a .NET Core solution and tried to configure the SonarQube in the build but endup with errors. I followed the steps from the link - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Extension+for+VSTS-TFS
WARNING: File 'C:***DocumentDBRepository.CS' is not located under the root directory 'C:VSTSAgent_work1s' and will not be analyzed.
No analysable projects were found. SonarQube analysis will not be performed. Check the build summary report for details.
In the Prepare analysis on SonarQube task - I choose the "Integrate with MSBuild" option.
The path it was referring to execute was the c:VSTSTask_work1s. But the sourcecode was in a different location - C:MaaS
Now I added the Advanced -> additional properties section, I added the below
sonar.exclusions=**/*.bin
sonar.cs.vscoveragexml.reportsPaths=**/*.coveragexml
sonar.projectBaseDir=C:maas
After adding the changes I see the same error.
I also choose the Use standalone scanner and choose - "Store configuration with my source code" and included the sonar-project.properties file in the root location of the solution.
I used the link - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+MSBuild
15:18:22.955 ERROR: Error during SonarQube Scanner execution
java.lang.IllegalStateException: Unable to load component class org.sonar.scanner.scan.ProjectLock
at org.sonar.core.platform.ComponentContainer$ExtendedDefaultPicoContainer.getComponent(ComponentContainer.java:64)
at org.picocontainer.DefaultPicoContainer.getComponent(DefaultPicoContainer.java:678)
at org.sonar.core.platform.ComponentContainer.getComponentByType(ComponentContainer.java:265)
at org.sonar.scanner.scan.ProjectScanContainer.doBeforeStart(ProjectScanContainer.java:118)
I also tried "manually provide configuration" option, but I end up with the same error.
Version details
Azure DevOps
SonarQube - Onpremises v 6.7.1
Self hosted agent - Windows 2016
dotnet-sonarscanner v 4.5.0


1
The SonarQube tasks are expecting to analyse the code from the repo you specified in the build definition, which the build agent will check out to C:VSTSAgent_work1s. Why is the code you are trying analyze under C:MaaS? Are you trying to analyze code that is not in repo specified in the build definition?
– duncanp
Jan 2 at 18:07
@duncanp - For some reason, the code was placed under c:maas. Now after discussions moved it to the Build agent location. Thanks a lot.
– mydevMachine
Feb 4 at 22:52
add a comment |
I created a Azure DevOps Build pipeline for a .NET Core solution and tried to configure the SonarQube in the build but endup with errors. I followed the steps from the link - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Extension+for+VSTS-TFS
WARNING: File 'C:***DocumentDBRepository.CS' is not located under the root directory 'C:VSTSAgent_work1s' and will not be analyzed.
No analysable projects were found. SonarQube analysis will not be performed. Check the build summary report for details.
In the Prepare analysis on SonarQube task - I choose the "Integrate with MSBuild" option.
The path it was referring to execute was the c:VSTSTask_work1s. But the sourcecode was in a different location - C:MaaS
Now I added the Advanced -> additional properties section, I added the below
sonar.exclusions=**/*.bin
sonar.cs.vscoveragexml.reportsPaths=**/*.coveragexml
sonar.projectBaseDir=C:maas
After adding the changes I see the same error.
I also choose the Use standalone scanner and choose - "Store configuration with my source code" and included the sonar-project.properties file in the root location of the solution.
I used the link - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+MSBuild
15:18:22.955 ERROR: Error during SonarQube Scanner execution
java.lang.IllegalStateException: Unable to load component class org.sonar.scanner.scan.ProjectLock
at org.sonar.core.platform.ComponentContainer$ExtendedDefaultPicoContainer.getComponent(ComponentContainer.java:64)
at org.picocontainer.DefaultPicoContainer.getComponent(DefaultPicoContainer.java:678)
at org.sonar.core.platform.ComponentContainer.getComponentByType(ComponentContainer.java:265)
at org.sonar.scanner.scan.ProjectScanContainer.doBeforeStart(ProjectScanContainer.java:118)
I also tried "manually provide configuration" option, but I end up with the same error.
Version details
Azure DevOps
SonarQube - Onpremises v 6.7.1
Self hosted agent - Windows 2016
dotnet-sonarscanner v 4.5.0


I created a Azure DevOps Build pipeline for a .NET Core solution and tried to configure the SonarQube in the build but endup with errors. I followed the steps from the link - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Extension+for+VSTS-TFS
WARNING: File 'C:***DocumentDBRepository.CS' is not located under the root directory 'C:VSTSAgent_work1s' and will not be analyzed.
No analysable projects were found. SonarQube analysis will not be performed. Check the build summary report for details.
In the Prepare analysis on SonarQube task - I choose the "Integrate with MSBuild" option.
The path it was referring to execute was the c:VSTSTask_work1s. But the sourcecode was in a different location - C:MaaS
Now I added the Advanced -> additional properties section, I added the below
sonar.exclusions=**/*.bin
sonar.cs.vscoveragexml.reportsPaths=**/*.coveragexml
sonar.projectBaseDir=C:maas
After adding the changes I see the same error.
I also choose the Use standalone scanner and choose - "Store configuration with my source code" and included the sonar-project.properties file in the root location of the solution.
I used the link - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+MSBuild
15:18:22.955 ERROR: Error during SonarQube Scanner execution
java.lang.IllegalStateException: Unable to load component class org.sonar.scanner.scan.ProjectLock
at org.sonar.core.platform.ComponentContainer$ExtendedDefaultPicoContainer.getComponent(ComponentContainer.java:64)
at org.picocontainer.DefaultPicoContainer.getComponent(DefaultPicoContainer.java:678)
at org.sonar.core.platform.ComponentContainer.getComponentByType(ComponentContainer.java:265)
at org.sonar.scanner.scan.ProjectScanContainer.doBeforeStart(ProjectScanContainer.java:118)
I also tried "manually provide configuration" option, but I end up with the same error.
Version details
Azure DevOps
SonarQube - Onpremises v 6.7.1
Self hosted agent - Windows 2016
dotnet-sonarscanner v 4.5.0




asked Jan 2 at 16:48


mydevMachinemydevMachine
6
6
1
The SonarQube tasks are expecting to analyse the code from the repo you specified in the build definition, which the build agent will check out to C:VSTSAgent_work1s. Why is the code you are trying analyze under C:MaaS? Are you trying to analyze code that is not in repo specified in the build definition?
– duncanp
Jan 2 at 18:07
@duncanp - For some reason, the code was placed under c:maas. Now after discussions moved it to the Build agent location. Thanks a lot.
– mydevMachine
Feb 4 at 22:52
add a comment |
1
The SonarQube tasks are expecting to analyse the code from the repo you specified in the build definition, which the build agent will check out to C:VSTSAgent_work1s. Why is the code you are trying analyze under C:MaaS? Are you trying to analyze code that is not in repo specified in the build definition?
– duncanp
Jan 2 at 18:07
@duncanp - For some reason, the code was placed under c:maas. Now after discussions moved it to the Build agent location. Thanks a lot.
– mydevMachine
Feb 4 at 22:52
1
1
The SonarQube tasks are expecting to analyse the code from the repo you specified in the build definition, which the build agent will check out to C:VSTSAgent_work1s. Why is the code you are trying analyze under C:MaaS? Are you trying to analyze code that is not in repo specified in the build definition?
– duncanp
Jan 2 at 18:07
The SonarQube tasks are expecting to analyse the code from the repo you specified in the build definition, which the build agent will check out to C:VSTSAgent_work1s. Why is the code you are trying analyze under C:MaaS? Are you trying to analyze code that is not in repo specified in the build definition?
– duncanp
Jan 2 at 18:07
@duncanp - For some reason, the code was placed under c:maas. Now after discussions moved it to the Build agent location. Thanks a lot.
– mydevMachine
Feb 4 at 22:52
@duncanp - For some reason, the code was placed under c:maas. Now after discussions moved it to the Build agent location. Thanks a lot.
– mydevMachine
Feb 4 at 22:52
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54010125%2fno-analysable-projects-were-found-azure-devops-self-hosted-agent%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54010125%2fno-analysable-projects-were-found-azure-devops-self-hosted-agent%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
The SonarQube tasks are expecting to analyse the code from the repo you specified in the build definition, which the build agent will check out to C:VSTSAgent_work1s. Why is the code you are trying analyze under C:MaaS? Are you trying to analyze code that is not in repo specified in the build definition?
– duncanp
Jan 2 at 18:07
@duncanp - For some reason, the code was placed under c:maas. Now after discussions moved it to the Build agent location. Thanks a lot.
– mydevMachine
Feb 4 at 22:52