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
This commit is contained in:
Phil Scott 2021-04-16 20:35:09 -04:00 committed by Patrik Svensson
parent 3e2eea730b
commit f2b8afffb3

View File

@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<IsTestProject>false</IsTestProject>
</PropertyGroup>
<ItemGroup Label="Project References">