From 3eb77a756706d16ce452e01a245875a2357100de Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 17 Apr 2025 04:08:44 +1000 Subject: [PATCH] Stop passing `--test-adapter-path` to `dotnet test` in scripts this was causing a warning to appear, see microsoft/vstest#3475 don't entirely remember why it was necessary to pass this, originally `-a`, at all; it's in the first commit d91c477e5 --- Dist/.BuildTestInConfigX.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/Dist/.BuildTestInConfigX.sh b/Dist/.BuildTestInConfigX.sh index c441597e8a..1958ce13c5 100755 --- a/Dist/.BuildTestInConfigX.sh +++ b/Dist/.BuildTestInConfigX.sh @@ -7,5 +7,4 @@ config="$1" shift Dist/.InvokeCLIOnMainSln.sh "test" "$config" \ -l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" \ - --test-adapter-path . \ "$@"