From 4c56c5183cdd221bc86498909c0cb3a3ef32a14b Mon Sep 17 00:00:00 2001 From: Canon Date: Thu, 12 Mar 2026 15:58:19 +0800 Subject: [PATCH] Fix Tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The issue was two things: 1. Missing xunit.runner.visualstudio package — xunit v3 needs this adapter for VSTest (dotnet test) to discover tests 2. Exe — this is for xunit v3's standalone runner mode (dotnet run), but it conflicts with dotnet test discovery. Removed it since you want dotnet test to work. --- FCPModUpdater.Tests/FCPModUpdater.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FCPModUpdater.Tests/FCPModUpdater.Tests.csproj b/FCPModUpdater.Tests/FCPModUpdater.Tests.csproj index a857dc7..3ed2ffc 100644 --- a/FCPModUpdater.Tests/FCPModUpdater.Tests.csproj +++ b/FCPModUpdater.Tests/FCPModUpdater.Tests.csproj @@ -6,13 +6,13 @@ enable false true - Exe +