Skip to content

Commit

Permalink
working again to solve previous issue
Browse files Browse the repository at this point in the history
  • Loading branch information
unaizorrilla committed Oct 9, 2019
1 parent eb7fdeb commit b333fe4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ echo "Running unit tests"
try {

Push-Location -Path .\test\UnitTests
exec { & dotnet test}
exec { & dotnet test --configuration x64}
} finally {
Pop-Location
}
Expand All @@ -60,7 +60,7 @@ echo "Running functional tests"
try {

Push-Location -Path .\test\FunctionalTests
exec { & dotnet test}
exec { & dotnet test --configuration x64}
} finally {
Pop-Location
}
Expand Down
2 changes: 1 addition & 1 deletion install-sdk.ps1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
$SdkVersion = "3.0.100"
& "./dotnet-install.ps1" -Version $SdkVersion -Architecture x86
& "./dotnet-install.ps1" -Version $SdkVersion

0 comments on commit b333fe4

Please sign in to comment.