From f2b8afffb3207c7867e33771d9b372c5af87ff84 Mon Sep 17 00:00:00 2001 From: Phil Scott Date: Fri, 16 Apr 2021 20:35:09 -0400 Subject: [PATCH] Marks Spectre.Console.Testing as not a test project Probably something that only bothers me, but I'm in a habit of running dotnet test at the solution level. It was discovering this project as a test project even though it isn't. This produces an error complaining about not having a testhost.dll. I'm pretty sure this comes in via a props when xunit is referenced. This attribute in the csproj marks the project explicitly as not a test project --- src/Spectre.Console.Testing/Spectre.Console.Testing.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Spectre.Console.Testing/Spectre.Console.Testing.csproj b/src/Spectre.Console.Testing/Spectre.Console.Testing.csproj index 578662f..24d93cd 100644 --- a/src/Spectre.Console.Testing/Spectre.Console.Testing.csproj +++ b/src/Spectre.Console.Testing/Spectre.Console.Testing.csproj @@ -2,6 +2,7 @@ netstandard2.0 + false