]> source.dussan.org Git - sonarqube.git/commitdiff
DOCS Fix Azure DevOps Integration page
authorPhilippe Perrin <philippe.perrin@sonarsource.com>
Thu, 11 Feb 2021 11:47:34 +0000 (12:47 +0100)
committersonartech <sonartech@sonarsource.com>
Thu, 11 Feb 2021 20:07:07 +0000 (20:07 +0000)
server/sonar-docs/src/pages/analysis/azuredevops-integration.md

index 7b5fb5550e637fd09fa7d55d43243617d973d20b..731b5c4d995e133d0c35819829cd3303cb5d3dea 100644 (file)
@@ -96,6 +96,7 @@ Select your build technology below to expand the instructions for configuring br
 | - master
 | - feature/*
 |
+| steps:
 | # Prepare Analysis Configuration task
 | - task: SonarQubePrepare@4
 |   inputs:
@@ -136,6 +137,7 @@ Select your build technology below to expand the instructions for configuring br
 | - master
 | - feature/*
 |
+| steps:
 | # Prepare Analysis Configuration task
 | - task: SonarQubePrepare@4
 |   inputs:
@@ -153,7 +155,7 @@ Select your build technology below to expand the instructions for configuring br
 | ## Other (JavaScript, TypeScript, Go, Python, PHP, etc.)
 | 1. In Azure DevOps, create or edit a **Build Pipeline**, and add a new **Prepare Analysis Configuration** task _before_ your build task:
 |    - Select the SonarQube server endpoint you created in the **Adding a new SonarQube Service Endpoint** section.
-|    - Under **Choose a way to run the analysis**, select **Integrate with MSBuild**.
+|    - Under **Choose a way to run the analysis**, select **Use standalone scanner**.
 |    - Select the **Manually provide configuration** mode.
 |    - In the **project key** field, enter your project key.
 | 1. Add a new **Run Code Analysis** task _after_ your build task.
@@ -167,12 +169,14 @@ Select your build technology below to expand the instructions for configuring br
 | - master
 | - feature/*
 |
+| steps:
 | # Prepare Analysis Configuration task
 | - task: SonarQubePrepare@4
 |   inputs:
 |     SonarQube: 'YourSonarqubeServerEndpoint'
 |     scannerMode: 'CLI'
 |     configMode: 'manual'
+|     cliProjectKey: 'YourProjectKey'
 |
 | # Run Code Analysis task
 | - task: SonarQubeAnalyze@4