]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-15351 Updated SonarScanner for .NET documentation
authormickael-caro-sonarsource <mickael.caro@sonarsource.com>
Tue, 31 Aug 2021 14:08:57 +0000 (16:08 +0200)
committersonartech <sonartech@sonarsource.com>
Thu, 2 Sep 2021 20:03:20 +0000 (20:03 +0000)
server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-msbuild.md

index 9a81837d5d7dedc6884068d6a6230a554ceeccba..77bcc4458f635e4dd03c8ae664b84babd54c0c7e 100644 (file)
----
-url: /analysis/scan/sonarscanner-for-msbuild/
-title: SonarScanner for .NET
----
-
-<!-- sonarqube -->
-<!-- static -->
-<update-center updatecenterkey="scannermsbuild"></update-center>
-<!-- /static -->
-<!-- embedded -->
-[[info]]
-| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner-msbuild.html) to get more details on the latest version of the scanner and how to download it.
-<!-- /embedded -->
-<!-- /sonarqube -->
-
-<!-- sonarcloud -->
-[[info]]
-| **Download SonarScanner for .NET 5.2.0** - [Issue Tracker](https://github.com/SonarSource/sonar-scanner-msbuild/issues) - [Source](https://github.com/SonarSource/sonar-scanner-msbuild)
-|
-| [Standalone executables](https://github.com/SonarSource/sonar-scanner-msbuild/releases/tag/5.2.0.29862) |
-| [.NET Core Global Tool](https://www.nuget.org/packages/dotnet-sonarscanner)
-<!-- /sonarcloud -->
-
-[[info]]
-| Since version 5.0, the SonarScanner for MSBuild is now the SonarScanner for .NET. 
-| Documentation is updated with that new name, artifacts and links will remain with the old name for now.
-
-The SonarScanner for .NET is the recommended way to launch an analysis for projects/solutions using MSBuild or dotnet command as a build tool. It is the result of a [collaboration between SonarSource and Microsoft](https://www.sonarqube.org/announcing-sonarqube-integration-with-msbuild-and-team-build/).
-
-SonarScanner for .NET is distributed as a standalone command line executable, as an extension for <!-- sonarcloud -->[Azure DevOps](/analysis/scan/sonarscanner-for-azure-devops/)<!-- /sonarcloud --><!-- sonarqube -->[Azure DevOps Server](/analysis/scan/sonarscanner-for-azure-devops/)<!-- /sonarqube -->, and as a plugin for [Jenkins](/analysis/scan/sonarscanner-for-jenkins/).
-
-It supports .Net Core on every platform (Windows, macOS, Linux).
-
-## Prerequisites
-<!-- sonarqube -->
-* At least the minimal version of Java supported by your SonarQube server
-<!-- /sonarqube -->
-<!-- sonarcloud -->
-* Java 11 or greater
-<!-- /sonarcloud -->
-* The SDK corresponding to your build system:
-   * [.NET Framework v4.6](https://www.microsoft.com/en-us/download/details.aspx?id=53344) - either [Build Tools for Visual Studio 2015 Update 3](https://go.microsoft.com/fwlink/?LinkId=615458) or the [Build Tools for Visual Studio 2017](https://www.visualstudio.com/downloads/)
-   * [.NET Core SDK 2.0 and above](https://dotnet.microsoft.com/download) (for .NET Core version of the scanner or if you plan to use [.NET Core Global Tool](https://www.nuget.org/packages/dotnet-sonarscanner)
-
-[[info]]
-| The flavor used to compile the Scanner for .NET (either .NET Framework, .NET Core or .NET) is independent of the .NET version the 
-| project you want to analyze has been built with. Concretely, you can analyze .NET Core code with the .NET Framework version of 
-| the Scanner. It's only relevant depending on your OS, and on the versions of .NET SDKs that are installed on your build machine.
-
-<!-- sonarqube -->
-### Compatibility
-
-Scanner Version|SonarQube
----|---
-5.x| LTS 6.7+
-4.x| LTS 6.7+
-<!-- /sonarqube -->
-## Installation
-
-### Standalone executable
-
-* Expand the downloaded file into the directory of your choice. We'll refer to it as `$install_directory` in the next steps.
-  * On Windows, you might need to unblock the ZIP file first (right-click **file > Properties > Unblock**).
-  * On Linux/OSX you may need to set execute permissions on the files in `$install_directory/sonar-scanner-(version)/bin`.
-
-* Uncomment, and update the global settings to point to <!-- sonarqube -->your SonarQube server<!-- /sonarqube --><!-- sonarcloud -->SonarCloud<!-- /sonarcloud --> by editing `$install_directory/SonarQube.Analysis.xml`. Values set in this file will be applied to all analyses of all projects unless overwritten locally.  
-Consider setting file system permissions to restrict access to this file.:
-
-```xml
-<SonarQubeAnalysisProperties  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.sonarsource.com/msbuild/integration/2015/1">
-  <Property Name="sonar.host.url"><!-- sonarqube -->http://localhost:9000<!-- /sonarqube --><!-- sonarcloud -->https://sonarcloud.io<!-- /sonarcloud --></Property>
-  <Property Name="sonar.login">[my-user-token]</Property>
-</SonarQubeAnalysisProperties>
-```
-
-* Add `$install_directory` to your PATH environment variable.
-
-### .NET Core Global Tool
-
-```bash
-dotnet tool install --global dotnet-sonarscanner --version x.x.x
-```
-
-The _--version_ argument is optional. If it is omitted the latest version will be installed. Full list of releases is available on the [NuGet page](https://www.nuget.org/packages/dotnet-sonarscanner)
-
-.NET Core Global Tool is available from .NET Core 2.1+
-
-<!-- sonarqube -->
-### On Linux/OSX, if your SonarQube server is secured
-
-1. Copy the server's CA certs to `/usr/local/share/ca-certificates`
-2. Run `sudo update-ca-certificates`
-<!-- /sonarqube -->
-
-## Use
-
-[[info]]
-| You can invoke the Scanner using arguments with both dash (-) or forward-slash (/) separators.
-| Example : SonarScanner.MSBuild.exe begin /k:"project-key" or SonarScanner.MSBuild.exe begin -k:"project-key" will work.
-
-There are two versions of the SonarScanner for .NET. In the following commands, you need to pass an [authentication token](/user-guide/user-token/) using the `sonar.login` property.
-
-### "Classic" .NET Framework Invocation
-
-The first version is based on the "classic" .NET Framework. To use it, execute the following commands from the root folder of your project:
-
-```
-SonarScanner.MSBuild.exe begin /k:"project-key" <!-- sonarcloud -->/o:"<organization>" <!-- /sonarcloud -->/d:sonar.login="<token>"
-MSBuild.exe <path to solution.sln> /t:Rebuild
-SonarScanner.MSBuild.exe end /d:sonar.login="<token>"
-```
-
-Note: On macOS or Linux, you can also use `mono <path to SonarScanner.MSBuild.exe>`.
-
-### .NET Core and .NET Core Global Tool Invocation
-
-The second version is based on .NET Core which has a very similar usage:
-
-```bash
-dotnet <path to SonarScanner.MSBuild.dll> begin /k:"project-key" <!-- sonarcloud -->/o:"<organization>" <!-- /sonarcloud -->/d:sonar.login="<token>"
-dotnet build <path to solution.sln>
-dotnet <path to SonarScanner.MSBuild.dll> end /d:sonar.login="<token>" 
-```
-
-The .NET Core version can also be used as a .NET Core Global Tool.
-After installing the Scanner as a global tool as described above it can be invoked as follows:
-
-```bash
-dotnet tool install --global dotnet-sonarscanner
-dotnet sonarscanner begin /k:"project-key" <!-- sonarcloud -->/o:"<organization>" <!-- /sonarcloud -->/d:sonar.login="<token>"
-dotnet build <path to solution.sln>
-dotnet sonarscanner end /d:sonar.login="<token>"
-```
-
-In summary, the invocation of the SonarScanner for .NET will depend on the scanner flavor:
-
- Scanner Flavor | Invocation
- --- | ---
- .NET 5 | `dotnet <path to SonarScanner.MSBuild.dll>` etc.
- .NET Core Global Tool | `dotnet sonarscanner begin` etc.
- .NET Core 2.0+ | `dotnet <path to SonarScanner.MSBuild.dll>` etc.
- .NET Framework 4.6+|`SonarScanner.MSBuild.exe begin` etc.
-
-Notes:
-
-* The .NET Core version of the scanner does not support TFS XAML builds and automatic finding/conversion of Code Coverage files. Apart from that, all versions of the Scanner have the same capabilities and command line arguments.
-
-## Analysis steps
-### Begin
-The begin step is executed when you add the `begin` command line argument. It hooks into the build pipeline, downloads {instance} quality profiles and settings and prepares your project for the analysis.
-
-Command Line Parameters:
-
-Parameter|Description
----|---
-`/k:<project-key>`|[required] Specifies the key of the analyzed project in {instance}
-`/n:<project name>`|[optional] Specifies the name of the analyzed project in {instance}. Adding this argument will overwrite the project name in {instance} if it already exists.
-`/v:<version>`|[recommended] Specifies the version of your project.
-`/d:sonar.login=<token> or <username>`| [recommended] Specifies the [authentication token](/user-guide/user-token/) or username used to authenticate with to {instance}. If this argument is added to the begin step, it must also be added to the end step.
-`/d:sonar.password=<password>`|[optional] Specifies the password for the {instance} username in the `sonar.login` argument. This argument is not needed if you use authentication token. If this argument is added to the begin step, it must also be added on the end step.
-`/d:sonar.verbose=true`|[optional] Sets the logging verbosity to detailed. Add this argument before sending logs for troubleshooting.
-`/d:sonar.dotnet.excludeTestProjects=true`|[optional] Excludes Test Projects from analysis. Add this argument to improve build performance when issues should not be detected in Test Projects.
-`/d:<analysis-parameter>=<value>`|[optional] Specifies an additional {instance} [analysis parameter](/analysis/analysis-parameters/), you can add this argument multiple times.
-<!-- sonarcloud --> `/o:<organization>`|[required] Specifies the name of the target organization in SonarCloud. <!-- /sonarcloud -->
-For detailed information about all available parameters, see [Analysis Parameters](/analysis/analysis-parameters/).
-
-[[warning]]
-| ![](/images/exclamation.svg) The "begin" step will modify your build like this:
-| * the active `CodeAnalysisRuleSet` will be updated to match the {instance} quality profile
-| * `WarningsAsErrors` will be turned off
-|
-| If your build process cannot tolerate these changes we recommend creating a second build job for {instance} analysis.
-
-### Build
-Between the `begin` and `end` steps, you need to build your project, execute tests and generate code coverage data. This part is specific to your needs and it is not detailed here.
-
-### End
-The end step is executed when you add the "end" command line argument. It cleans the MSBuild/dotnet build hooks, collects the analysis data generated by the build, the test results, the code coverage and then uploads everything to {instance}
-
-There are only two additional arguments that are allowed for the end step:
-
-Parameter|Description
----|---
-`/d:sonar.login=<token> or <username>`| This argument is required if it was added to the begin step.
-`/d:sonar.password=<password>`| This argument is required if it was added to the begin step and you are not using an authentication token.
-
-### Known Limitations
-
-* MSBuild versions older than 14 are not supported.
-* Web Application projects are supported. Legacy Web Site projects are not.
-* Projects targeting multiple frameworks and using preprocessor directives could have slightly inaccurate metrics (lines of code, complexity, etc.) because the metrics are calculated only from the first of the built targets.
-
-## Code Coverage
-
-In a Azure DevOps / TFS environment, test files are automatically retrieved following this search
-* Search for .trx files in any TestResults folder located under the $Build.SourcesDirectory path
-* If not found, then a fallback search is made against $Agent.TempDirectory
-
-Once trx files have been found, their `.coverage` counterpart are searched as well and the scanner tries to convert them to `.coveragexml` files that will be uploaded to {instance}.
-CodeCoverage.exe tool is used for that, and the scanner also needs to find a path to that tool, following this search path
-* Search for the presence of `VsTestToolsInstallerInstalledToolLocation` environment variable, set by the VsTestToolsPlatformInstaller task or by the user
-* If not found, search for either the presence of that tool in well-known installation path, or via the registry.
-
-As stated above, this will work only with the .NET 4.6 flavor of the Scanner.
-
-## Excluding projects from analysis
-
-Some project types, such as [Microsoft Fakes](https://msdn.microsoft.com/en-us/library/hh549175.aspx), are automatically excluded from analysis. To manually exclude a different type of project from the analysis, place the following in its .xxproj file.
-
-```xml
-<!-- in .csproj -->
-<PropertyGroup>
-  <!-- Exclude the project from analysis -->
-  <SonarQubeExclude>true</SonarQubeExclude>
-</PropertyGroup>
-```
-
-## Advanced topics
-
-**Analyzing MSBuild 12 projects with MSBuild 14**  
-The Sonar Scanner for .NET requires your project to be built with MSBuild 14.0. We recommend installing Visual Studio 2015 update 3 or later on the analysis machine in order to benefit from the integration and features provided with the Visual Studio ecosystem (VSTest, MSTest unit tests, etc.).
-
-Projects targeting older versions of the .NET Framework can be built using MSBuild 14.0 by setting the "TargetFrameworkVersion" MSBuild property as documented by Microsoft:
-
-* [How to: Target a Version of the .NET Framework](https://msdn.microsoft.com/en-us/library/bb398202.aspx)
-* [MSBuild Target Framework and Target Platform](https://msdn.microsoft.com/en-us/library/hh264221.aspx)
-
-If you do not want to switch your production build to MSBuild 14.0, you can set up a separate build dedicated to the {instance} analysis.
-
-**Detection of test projects**
-
-You can read a full description on that subject on our wiki [here](https://github.com/SonarSource/sonar-scanner-msbuild/wiki/Analysis-of-product-projects-vs.-test-projects).
-
-**Per-project analysis parameters**
-Some analysis parameters can be set for a single MSBuild project by adding them to its .csproj file.
-
-```xml
-<!-- in .csproj -->
-<ItemGroup>
-  <SonarQubeSetting Include="sonar.stylecop.projectFilePath">
-    <Value>$(MSBuildProjectFullPath)</Value>
-  </SonarQubeSetting>
-</ItemGroup>
-```
-
-**Analyzing languages other than C# and VB**
-
-By default, SonarScanner for .NET will only analyze C# and VB files in your project. To enable the analysis of other types of files, these files must be listed in the MSBuild project file (the `.csproj` or `.vbproj` file).
-
-More specifically, any files included by an element of one of the `ItemTypes` in
-[this list](https://github.com/SonarSource/sonar-scanner-msbuild/blob/master/src/SonarScanner.MSBuild.Tasks/Targets/SonarQube.Integration.targets#L112)
-will be analyzed automatically. For example, the following line in your `.csproj` or `.vbproj` file
-
-```
-<Content Include="foo\bar\*.js" />
-```
-
-will enable the analysis of all JS files in the directory `foo\bar` because `Content` is one of the `ItemTypes` whose includes are automatically analyzed.
-
-You can also add `ItemTypes` to the default list by following the directions [here](https://github.com/SonarSource/sonar-scanner-msbuild/blob/master/src/SonarScanner.MSBuild.Tasks/Targets/SonarQube.Integration.targets#L75).
-
-You can check which files the scanner will analyze by looking in the file .sonarqube\out\sonar-project.properties after MSBuild has finished.
-
-**Using SonarScanner for .NET with a Proxy**  
-On build machines that connect to the Internet through a proxy server you might experience difficulties connecting to {instance}. To instruct the Java VM to use the system proxy settings, you need to set the following environment variable before running the SonarScanner for .NET:
-
-```bash
-SONAR_SCANNER_OPTS = "-Djava.net.useSystemProxies=true"
-```
-
-To instruct the Java VM to use specific proxy settings or when there is no system-wide configuration use the following value:
-
-```bash
-SONAR_SCANNER_OPTS = "-Dhttp.proxyHost=yourProxyHost -Dhttp.proxyPort=yourProxyPort"
-```
-Where _yourProxyHost_ and _yourProxyPort_ are the hostname and the port of your proxy server. There are additional proxy settings for HTTPS, authentication and exclusions that could be passed to the Java VM. For more information see the following article: https://docs.oracle.com/javase/8/docs/technotes/guides/net/proxies.html.
-
-```HTTP_PROXY```, ```HTTPS_PROXY```, ```ALL_PROXY``` and ```NO_PROXY``` will be automatically recognized and used to make calls against {instance}. The Scanner for .NET makes HTTP calls, independant from the settings above concerning the Java VM, to fetch the Quality Profile and other useful settings for the "end" step.
-
-## Known issues
-
-**I have multiple builds in the same pipeline, each of them getting analyzed even if the Run Code Analysis has already been executed**
-
-We don't uninstall the global `ImportBefore` targets to support concurrent analyses on the same machine. Main effect is that if you build a solution where a .sonarqube folder is located nearby, then the sonar-dotnet analyzer will be executed along your build task.
-
-To avoid that, you can disable the targets file by adding a build parameter:
-```
-msbuild /p:SonarQubeTargetsImported=true
-dotnet build -p:SonarQubeTargetsImported=true
-```
+---\r
+url: /analysis/scan/sonarscanner-for-msbuild/\r
+title: SonarScanner for .NET\r
+---\r
+\r
+<!-- sonarqube -->\r
+<!-- static -->\r
+<update-center updatecenterkey="scannermsbuild"></update-center>\r
+<!-- /static -->\r
+<!-- embedded -->\r
+[[info]]\r
+| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner-msbuild.html) to get more details on the latest version of the scanner and how to download it.\r
+<!-- /embedded -->\r
+<!-- /sonarqube -->\r
+\r
+<!-- sonarcloud -->\r
+[[info]]\r
+| **Download SonarScanner for .NET** - [Issue Tracker](https://github.com/SonarSource/sonar-scanner-msbuild/issues) - [Source](https://github.com/SonarSource/sonar-scanner-msbuild)\r
+|\r
+| [Standalone executables](https://github.com/SonarSource/sonar-scanner-msbuild/releases) |\r
+| [.NET Core Global Tool](https://www.nuget.org/packages/dotnet-sonarscanner)\r
+<!-- /sonarcloud -->\r
+\r
+[[info]]\r
+| Since version 5.0, the SonarScanner for MSBuild is now the SonarScanner for .NET. \r
+| documentation is updated with that new name, artifacts and links will remain with the old name for now.\r
+\r
+The SonarScanner for .NET is the recommended way to launch an analysis for projects/solutions using MSBuild or dotnet command as a build tool. It is the result of a [collaboration between SonarSource and Microsoft](https://www.sonarqube.org/announcing-sonarqube-integration-with-msbuild-and-team-build/).\r
+\r
+SonarScanner for .NET is distributed as a standalone command line executable, as an extension for <!-- sonarcloud -->[Azure DevOps](/analysis/scan/sonarscanner-for-azure-devops/)<!-- /sonarcloud --><!-- sonarqube -->[Azure DevOps Server](/analysis/scan/sonarscanner-for-azure-devops/)<!-- /sonarqube -->, and as a plugin for [Jenkins](/analysis/scan/sonarscanner-for-jenkins/).\r
+\r
+It supports .Net Core on every platform (Windows, macOS, Linux).\r
+\r
+## Prerequisites\r
+<!-- sonarqube -->\r
+* At least the minimal version of Java supported by your SonarQube server\r
+<!-- /sonarqube -->\r
+<!-- sonarcloud -->\r
+* Java 11 or greater\r
+<!-- /sonarcloud -->\r
+* The SDK corresponding to your build system:\r
+   * [.NET Framework v4.6](https://www.microsoft.com/en-us/download/details.aspx?id=53344) - either [Build Tools for Visual Studio 2015 Update 3](https://go.microsoft.com/fwlink/?LinkId=615458) or the [Build Tools for Visual Studio 2017](https://www.visualstudio.com/downloads/)\r
+   * [.NET Core SDK 2.0 and above](https://dotnet.microsoft.com/download) (for .NET Core version of the scanner or if you plan to use [.NET Core Global Tool](https://www.nuget.org/packages/dotnet-sonarscanner)\r
+\r
+[[info]]\r
+| The flavor used to compile the Scanner for .NET (either .NET Framework, .NET Core or .NET) is independent of the .NET version the \r
+| project you want to analyze has been built with. Concretely, you can analyze .NET Core code with the .NET Framework version of \r
+| the Scanner. It's only relevant depending on your OS, and on the versions of .NET SDKs that are installed on your build machine.\r
+\r
+<!-- sonarqube -->\r
+### Compatibility\r
+\r
+Scanner Version|SonarQube\r
+---|---\r
+5.x| LTS 6.7+\r
+4.x| LTS 6.7+\r
+<!-- /sonarqube -->\r
+## Installation\r
+\r
+### Standalone executable\r
+\r
+* Expand the downloaded file into the directory of your choice. We'll refer to it as `$install_directory` in the next steps.\r
+  * On Windows, you might need to unblock the ZIP file first (right-click **file > Properties > Unblock**).\r
+  * On Linux/OSX you may need to set execute permissions on the files in `$install_directory/sonar-scanner-(version)/bin`.\r
+\r
+* Uncomment, and update the global settings to point to <!-- sonarqube -->your SonarQube server<!-- /sonarqube --><!-- sonarcloud -->SonarCloud<!-- /sonarcloud --> by editing `$install_directory/SonarQube.Analysis.xml`. Values set in this file will be applied to all analyses of all projects unless overwritten locally.  \r
+Consider setting file system permissions to restrict access to this file.:\r
+\r
+```xml\r
+<SonarQubeAnalysisProperties  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.sonarsource.com/msbuild/integration/2015/1">\r
+  <Property Name="sonar.host.url"><!-- sonarqube -->http://localhost:9000<!-- /sonarqube --><!-- sonarcloud -->https://sonarcloud.io<!-- /sonarcloud --></Property>\r
+  <Property Name="sonar.login">[my-user-token]</Property>\r
+</SonarQubeAnalysisProperties>\r
+```\r
+\r
+* Add `$install_directory` to your PATH environment variable.\r
+\r
+### .NET Core Global Tool\r
+\r
+```bash\r
+dotnet tool install --global dotnet-sonarscanner --version x.x.x\r
+```\r
+\r
+The _--version_ argument is optional. If it is omitted the latest version will be installed. Full list of releases is available on the [NuGet page](https://www.nuget.org/packages/dotnet-sonarscanner)\r
+\r
+.NET Core Global Tool is available from .NET Core 2.1+\r
+\r
+<!-- sonarqube -->\r
+### On Linux/OSX, if your SonarQube server is secured\r
+\r
+1. Copy the server's CA certs to `/usr/local/share/ca-certificates`\r
+2. Run `sudo update-ca-certificates`\r
+<!-- /sonarqube -->\r
+\r
+## Use\r
+\r
+[[info]]\r
+| You can invoke the Scanner using arguments with both dash (-) or forward-slash (/) separators.\r
+| Example : SonarScanner.MSBuild.exe begin /k:"project-key" or SonarScanner.MSBuild.exe begin -k:"project-key" will work.\r
+\r
+There are two versions of the SonarScanner for .NET. In the following commands, you need to pass an [authentication token](/user-guide/user-token/) using the `sonar.login` property.\r
+\r
+### "Classic" .NET Framework Invocation\r
+\r
+The first version is based on the "classic" .NET Framework. To use it, execute the following commands from the root folder of your project:\r
+\r
+```\r
+SonarScanner.MSBuild.exe begin /k:"project-key" <!-- sonarcloud -->/o:"<organization>" <!-- /sonarcloud -->/d:sonar.login="<token>"\r
+MSBuild.exe <path to solution.sln> /t:Rebuild\r
+SonarScanner.MSBuild.exe end /d:sonar.login="<token>"\r
+```\r
+\r
+Note: On macOS or Linux, you can also use `mono <path to SonarScanner.MSBuild.exe>`.\r
+\r
+### .NET Core and .NET Core Global Tool Invocation\r
+\r
+The second version is based on .NET Core which has a very similar usage:\r
+\r
+```bash\r
+dotnet <path to SonarScanner.MSBuild.dll> begin /k:"project-key" <!-- sonarcloud -->/o:"<organization>" <!-- /sonarcloud -->/d:sonar.login="<token>"\r
+dotnet build <path to solution.sln>\r
+dotnet <path to SonarScanner.MSBuild.dll> end /d:sonar.login="<token>" \r
+```\r
+\r
+The .NET Core version can also be used as a .NET Core Global Tool.\r
+After installing the Scanner as a global tool as described above it can be invoked as follows:\r
+\r
+```bash\r
+dotnet tool install --global dotnet-sonarscanner\r
+dotnet sonarscanner begin /k:"project-key" <!-- sonarcloud -->/o:"<organization>" <!-- /sonarcloud -->/d:sonar.login="<token>"\r
+dotnet build <path to solution.sln>\r
+dotnet sonarscanner end /d:sonar.login="<token>"\r
+```\r
+\r
+In summary, the invocation of the SonarScanner for .NET will depend on the scanner flavor:\r
+\r
+ Scanner Flavor | Invocation\r
+ --- | ---\r
+ .NET 5 | `dotnet <path to SonarScanner.MSBuild.dll>` etc.\r
+ .NET Core Global Tool | `dotnet sonarscanner begin` etc.\r
+ .NET Core 2.0+ | `dotnet <path to SonarScanner.MSBuild.dll>` etc.\r
+ .NET Framework 4.6+|`SonarScanner.MSBuild.exe begin` etc.\r
+\r
+Notes:\r
+\r
+* The .NET Core version of the scanner does not support TFS XAML builds and automatic finding/conversion of Code Coverage files. Apart from that, all versions of the Scanner have the same capabilities and command line arguments.\r
+\r
+## Analysis steps\r
+### Begin\r
+The begin step is executed when you add the `begin` command line argument. It hooks into the build pipeline, downloads {instance} quality profiles and settings and prepares your project for the analysis.\r
+\r
+Command Line Parameters:\r
+\r
+<!-- sonarcloud -->\r
+\r
+Parameter|Description\r
+---|---\r
+`/k:<project-key>`|[required] Specifies the key of the analyzed project in {instance}\r
+`/n:<project name>`|[optional] Specifies the name of the analyzed project in {instance}. Adding this argument will overwrite the project name in {instance} if it already exists.\r
+`/v:<version>`|[recommended] Specifies the version of your project.\r
+`/o:<organization>`|[required] Specifies the name of the target organization in SonarCloud.\r
+`/d:sonar.login=<token> or <username>`| [recommended] Specifies the [authentication token](/user-guide/user-token/) or username used to authenticate with to {instance}. If this argument is added to the begin step, it must also be added to the end step.\r
+`/d:sonar.password=<password>`|[optional] Specifies the password for the {instance} username in the `sonar.login` argument. This argument is not needed if you use authentication token. If this argument is added to the begin step, it must also be added on the end step.\r
+`/d:sonar.verbose=true`|[optional] Sets the logging verbosity to detailed. Add this argument before sending logs for troubleshooting.\r
+`/d:sonar.dotnet.excludeTestProjects=true`|[optional] Excludes Test Projects from analysis. Add this argument to improve build performance when issues should not be detected in Test Projects.\r
+`/d:<analysis-parameter>=<value>`|[optional] Specifies an additional {instance} [analysis parameter](/analysis/analysis-parameters/), you can add this argument multiple times.\r
+\r
+<!-- /sonarcloud -->\r
+\r
+<!-- sonarqube -->\r
+\r
+Parameter|Description\r
+---|---\r
+`/k:<project-key>`|[required] Specifies the key of the analyzed project in {instance}\r
+`/n:<project name>`|[optional] Specifies the name of the analyzed project in {instance}. Adding this argument will overwrite the project name in {instance} if it already exists.\r
+`/v:<version>`|[recommended] Specifies the version of your project.\r
+`/d:sonar.login=<token> or <username>`| [recommended] Specifies the [authentication token](/user-guide/user-token/) or username used to authenticate with to {instance}. If this argument is added to the begin step, it must also be added to the end step.\r
+`/d:sonar.password=<password>`|[optional] Specifies the password for the {instance} username in the `sonar.login` argument. This argument is not needed if you use authentication token. If this argument is added to the begin step, it must also be added on the end step.\r
+`/d:sonar.verbose=true`|[optional] Sets the logging verbosity to detailed. Add this argument before sending logs for troubleshooting.\r
+`/d:sonar.dotnet.excludeTestProjects=true`|[optional] Excludes Test Projects from analysis. Add this argument to improve build performance when issues should not be detected in Test Projects.\r
+`/d:<analysis-parameter>=<value>`|[optional] Specifies an additional {instance} [analysis parameter](/analysis/analysis-parameters/), you can add this argument multiple times.\r
+\r
+<!-- /sonarqube -->\r
+\r
+For detailed information about all available parameters, see [Analysis Parameters](/analysis/analysis-parameters/).\r
+\r
+[[warning]]\r
+| ![](/images/exclamation.svg) The "begin" step will modify your build like this:\r
+| * the active `CodeAnalysisRuleSet` will be updated to match the {instance} quality profile\r
+| * `WarningsAsErrors` will be turned off\r
+|\r
+| If your build process cannot tolerate these changes we recommend creating a second build job for {instance} analysis.\r
+\r
+### Build\r
+Between the `begin` and `end` steps, you need to build your project, execute tests and generate code coverage data. This part is specific to your needs and it is not detailed here.\r
+\r
+### End\r
+The end step is executed when you add the "end" command line argument. It cleans the MSBuild/dotnet build hooks, collects the analysis data generated by the build, the test results, the code coverage and then uploads everything to {instance}\r
+\r
+There are only two additional arguments that are allowed for the end step:\r
+\r
+Parameter|Description\r
+---|---\r
+`/d:sonar.login=<token> or <username>`| This argument is required if it was added to the begin step.\r
+`/d:sonar.password=<password>`| This argument is required if it was added to the begin step and you are not using an authentication token.\r
+\r
+### Known Limitations\r
+\r
+* MSBuild versions older than 14 are not supported.\r
+* Web Application projects are supported. Legacy Web Site projects are not.\r
+* Projects targeting multiple frameworks and using preprocessor directives could have slightly inaccurate metrics (lines of code, complexity, etc.) because the metrics are calculated only from the first of the built targets.\r
+\r
+## Code Coverage\r
+\r
+In a Azure DevOps / TFS environment, test files are automatically retrieved following this search\r
+* Search for .trx files in any TestResults folder located under the $Build.SourcesDirectory path\r
+* If not found, then a fallback search is made against $Agent.TempDirectory\r
+\r
+Once trx files have been found, their `.coverage` counterpart are searched as well and the scanner tries to convert them to `.coveragexml` files that will be uploaded to {instance}.\r
+CodeCoverage.exe tool is used for that, and the scanner also needs to find a path to that tool, following this search path\r
+* Search for the presence of `VsTestToolsInstallerInstalledToolLocation` environment variable, set by the VsTestToolsPlatformInstaller task or by the user\r
+* If not found, search for either the presence of that tool in well-known installation path, or via the registry.\r
+\r
+As stated above, this will work only with the .NET 4.6 flavor of the Scanner.\r
+\r
+## Excluding projects from analysis\r
+\r
+Some project types, such as [Microsoft Fakes](https://msdn.microsoft.com/en-us/library/hh549175.aspx), are automatically excluded from analysis. To manually exclude a different type of project from the analysis, place the following in its .xxproj file.\r
+\r
+```xml\r
+<!-- in .csproj -->\r
+<PropertyGroup>\r
+  <!-- Exclude the project from analysis -->\r
+  <SonarQubeExclude>true</SonarQubeExclude>\r
+</PropertyGroup>\r
+```\r
+\r
+## Advanced topics\r
+\r
+**Analyzing MSBuild 12 projects with MSBuild 14**  \r
+The Sonar Scanner for .NET requires your project to be built with MSBuild 14.0. We recommend installing Visual Studio 2015 update 3 or later on the analysis machine in order to benefit from the integration and features provided with the Visual Studio ecosystem (VSTest, MSTest unit tests, etc.).\r
+\r
+Projects targeting older versions of the .NET Framework can be built using MSBuild 14.0 by setting the "TargetFrameworkVersion" MSBuild property as documented by Microsoft:\r
+\r
+* [How to: Target a Version of the .NET Framework](https://msdn.microsoft.com/en-us/library/bb398202.aspx)\r
+* [MSBuild Target Framework and Target Platform](https://msdn.microsoft.com/en-us/library/hh264221.aspx)\r
+\r
+For example, if you want to build a .NET 3.5 project, but you are using a newer MSBuild version:\r
+\r
+```\r
+MSBuild.exe /t:Rebuild /p:TargetFramework=net35\r
+```\r
+\r
+If you do not want to switch your production build to MSBuild 14.0, you can set up a separate build dedicated to the {instance} analysis.\r
+\r
+**Detection of test projects**\r
+\r
+You can read a full description on that subject on our wiki [here](https://github.com/SonarSource/sonar-scanner-msbuild/wiki/Analysis-of-product-projects-vs.-test-projects).\r
+\r
+**Per-project analysis parameters**\r
+Some analysis parameters can be set for a single MSBuild project by adding them to its .csproj file.\r
+\r
+```xml\r
+<!-- in .csproj -->\r
+<ItemGroup>\r
+  <SonarQubeSetting Include="sonar.stylecop.projectFilePath">\r
+    <Value>$(MSBuildProjectFullPath)</Value>\r
+  </SonarQubeSetting>\r
+</ItemGroup>\r
+```\r
+\r
+**Analyzing languages other than C# and VB**\r
+\r
+For newer SDK-style projects (used by .NET Core, .NET 5, and later), the SonarScanner for .NET will analyze all file types that are supported by the available language plugins unless explicitly excluded. \r
+\r
+For older-style projects, the scanner will only analyze files that are listed in the `.csproj` or `.vbproj` project file. Normally this means that only C# and VB files will be analyzed. To enable the analysis of other types of files, include them in the project file.\r
+\r
+More specifically, any files included by an element of one of the `ItemTypes` in\r
+[this list](https://github.com/SonarSource/sonar-scanner-msbuild/blob/master/src/SonarScanner.MSBuild.Tasks/Targets/SonarQube.Integration.targets#L112)\r
+will be analyzed automatically. For example, the following line in your `.csproj` or `.vbproj` file\r
+\r
+```\r
+<Content Include="foo\bar\*.js" />\r
+```\r
+\r
+will enable the analysis of all JS files in the directory `foo\bar` because `Content` is one of the `ItemTypes` whose includes are automatically analyzed.\r
+\r
+You can also add `ItemTypes` to the default list by following the directions [here](https://github.com/SonarSource/sonar-scanner-msbuild/blob/master/src/SonarScanner.MSBuild.Tasks/Targets/SonarQube.Integration.targets#L75).\r
+\r
+You can check which files the scanner will analyze by looking in the file .sonarqube\out\sonar-project.properties after MSBuild has finished.\r
+\r
+**Using SonarScanner for .NET with a Proxy**  \r
+On build machines that connect to the Internet through a proxy server you might experience difficulties connecting to {instance}. To instruct the Java VM to use the system proxy settings, you need to set the following environment variable before running the SonarScanner for .NET:\r
+\r
+```bash\r
+SONAR_SCANNER_OPTS = "-Djava.net.useSystemProxies=true"\r
+```\r
+\r
+To instruct the Java VM to use specific proxy settings or when there is no system-wide configuration use the following value:\r
+\r
+```bash\r
+SONAR_SCANNER_OPTS = "-Dhttp.proxyHost=yourProxyHost -Dhttp.proxyPort=yourProxyPort"\r
+```\r
+Where _yourProxyHost_ and _yourProxyPort_ are the hostname and the port of your proxy server. There are additional proxy settings for HTTPS, authentication and exclusions that could be passed to the Java VM. For more information see the following article: https://docs.oracle.com/javase/8/docs/technotes/guides/net/proxies.html.\r
+\r
+`HTTP_PROXY`, `HTTPS_PROXY`, `ALL_PROXY`, and `NO_PROXY` will be automatically recognized and use to make call against {instance}. The Scanner for .NET makes HTTP calls, independant from the settings above concerning the Java VM, to fetch the Quality Profile and other useful settings for the "end" step.\r
+\r
+## Known issues\r
+\r
+**I have multiple builds in the same pipeline, each of them getting analyzed even if the Run Code Analysis has already been executed**\r
+\r
+We don't uninstall the global `ImportBefore` targets to support concurrent analyses on the same machine. Main effect is that if you build a solution where a .sonarqube folder is located nearby, then the sonar-dotnet analyzer will be executed along your build task.\r
+\r
+To avoid that, you can disable the targets file by adding a build parameter:\r
+```\r
+msbuild /p:SonarQubeTargetsImported=true\r
+dotnet build -p:SonarQubeTargetsImported=true\r
+```\r