You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/nupkg/unit_test.ps1

9 lines
212 B

. ".\common.ps1"
# Unit test for all solutions
foreach($solution in $solutions) {
$solutionFolder = Join-Path $rootFolder $solution
Set-Location $solutionFolder
dotnet test --no-build --logger trx
}