Skip to content

Commit

Permalink
Merge pull request #298 from AArnott/no-mono-tests
Browse files Browse the repository at this point in the history
Avoid running tests on mono for test project
  • Loading branch information
AArnott authored Oct 18, 2024
2 parents 698b73d + 93a31bb commit e9b929a
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 e9b929a

Please sign in to comment.