From 5c7f66ed3f44feea61ec6552ee6cae55bc3d06cd Mon Sep 17 00:00:00 2001 From: Peter Rekdal Sunde Date: Mon, 29 Jun 2020 14:12:34 +0200 Subject: [PATCH] Fix failing NET461 test cases by ensuring that tests are ran targeting x64. --- bootstrap.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap.ps1 b/bootstrap.ps1 index 2d6a9883..d73276eb 100644 --- a/bootstrap.ps1 +++ b/bootstrap.ps1 @@ -342,12 +342,14 @@ function Invoke-Dotnet-UnitTests Invoke-Command-Colored $CommandDotnet @( "build" "/p:SnapInstallerAllowElevatedContext=" + ($CIBuild ? "True" : "False") + "/p:Platform=x64" # TODO: FIXME IF TARGETING ARM "--configuration $Configuration" "$Project" ) Invoke-Command-Colored $CommandDotnet @( "test" + "/p:Platform=x64" # TODO: FIXME IF TARGETING ARM "$Project" "--configuration $Configuration" "--verbosity normal"