Add tools for code-coverage

This commit is contained in:
2022-06-18 12:26:45 +03:00
parent af1ec2d0f0
commit 1b0cd984f8
2 changed files with 21 additions and 0 deletions

18
.config/dotnet-tools.json Normal file
View File

@@ -0,0 +1,18 @@
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-sonarscanner": {
"version": "5.6.0",
"commands": [
"dotnet-sonarscanner"
]
},
"dotnet-coverage": {
"version": "17.3.2",
"commands": [
"dotnet-coverage"
]
}
}
}