From ff14df697701505a90efb023e3b195fe30b46844 Mon Sep 17 00:00:00 2001 From: Shubham Tiwari Date: Tue, 21 May 2024 20:09:31 +0530 Subject: [PATCH] chore: corrected reportsPath to net462 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5d1beed7c..45e82224e 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ docker-push: docker push twilio/twilio-csharp:${CURRENT_TAG} cover: - dotnet sonarscanner begin /k:"$(PROJECT_NAME)" /o:"twilio" /d:sonar.host.url=https://sonarcloud.io /d:sonar.token="${SONAR_TOKEN}" /d:sonar.language="cs" $(SONAR_SOURCES) /d:sonar.cs.opencover.reportsPaths="test/lcov.opencover.xml" + dotnet sonarscanner begin /k:"$(PROJECT_NAME)" /o:"twilio" /d:sonar.host.url=https://sonarcloud.io /d:sonar.token="${SONAR_TOKEN}" /d:sonar.language="cs" $(SONAR_SOURCES) /d:sonar.cs.opencover.reportsPaths="test/lcov.462.opencover.xml" # Write to a log file since the logs for build with sonar analyzer are pretty beefy and travis has a limit on the number of log lines dotnet build Twilio.sln > buildsonar.log dotnet test test/Twilio.Test/Twilio.Test.csproj --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=../lcov