Skip to content

Commit

Permalink
Avoid running tests on mono for test project
Browse files Browse the repository at this point in the history
The mono runtime is obsolete for most applications.
  • Loading branch information
AArnott committed Oct 18, 2024
1 parent 698b73d commit 93a31bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/Library.Tests/Library.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net472</TargetFrameworks>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net472</TargetFrameworks>
<RootNamespace />
</PropertyGroup>

Expand Down

0 comments on commit 93a31bb

Please sign in to comment.