diff --git a/build.ps1 b/build.ps1 index 020eebd5..344f31d9 100644 --- a/build.ps1 +++ b/build.ps1 @@ -43,7 +43,7 @@ echo "Running unit tests" try { Push-Location -Path .\test\UnitTests - exec { & dotnet test --configuration x64} + exec { & dotnet test} } finally { Pop-Location } @@ -60,7 +60,7 @@ echo "Running functional tests" try { Push-Location -Path .\test\FunctionalTests - exec { & dotnet test --configuration x64} + exec { & dotnet test} } finally { Pop-Location }