Skip to content

Commit 93a31bb

Browse files
committed
Avoid running tests on mono for test project
The mono runtime is obsolete for most applications.
1 parent 698b73d commit 93a31bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/Library.Tests/Library.Tests.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net472</TargetFrameworks>
4+
<TargetFrameworks>net6.0</TargetFrameworks>
5+
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net472</TargetFrameworks>
56
<RootNamespace />
67
</PropertyGroup>
78

0 commit comments

Comments
 (0)