当前位置:   article > 正文

SonarQube分析.NET Core代码_sonar 管理 aspnet core 代码

sonar 管理 aspnet core 代码
  1. 安装工具
安装命令:
> dotnet tool install --global dotnet-sonarscanner --version 4.7.1
查看版本号和帮助
> dotnet sonarscanner /?
  • 1
  • 2
  • 3
  • 4
  1. 配置文件
我的安装目录:
C:\Users\administrator\.dotnet\tools\.store\dotnet-sonarscanner\4.7.1\dotnet-sonarscanner\4.7.1\tools\netcoreapp2.1\any
配置文件名:
SonarQube.Analysis.xml
修改如下部分
  <Property Name="sonar.host.url">http://localhost:9000</Property>
  <Property Name="sonar.login">admin</Property>
  <Property Name="sonar.password">admin123</Property>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  1. Jenkins pipelnet
stage ('SonarQube') {
    steps {
		bat "dotnet sonarscanner begin /key:demo"
		bat "dotnet build demo.sln"
		bat "dotnet sonarscanner end "
	}
}  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/973082
推荐阅读
相关标签
  

闽ICP备14008679号