File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -33,4 +33,11 @@ steps:
3333 command : test
3434 projects : ' **/*[Tt]ests/*.csproj'
3535 arguments : ' --configuration $(BuildConfiguration) /p:CollectCoverage=true /p:CoverletOutput=../TestResults/ /p:CoverletOutputFormat="json%2ccobertura" /p:MergeWith=../TestResults/coverage.json /p:ThresholdType=branch /p:Threshold=$(codeCoverageBranchThreshold) /p:ThresholdStat=total'
36- publishTestResults : false
36+ publishTestResults : false
37+
38+ - task : DotNetCoreCLI@2
39+ displayName : ' Rodando SonarScanner '
40+ inputs :
41+ command : custom
42+ custom : tool
43+ arguments : ' dotnet sonarscanner begin /k:"$(SONAR_PROJECT_KEY)" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="$(SONAR_TOKEN)" /d:sonar.cs.dotcover.reportsPaths=.\TestResults\coverage.json dotnet build –no-incremental dotnet sonarscanner end /d:sonar.login="$(SONAR_TOKEN)"'
You can’t perform that action at this time.
0 commit comments