Skip to content

Commit

Permalink
Fix tests to run net48 only on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Feb 17, 2024
1 parent 2315d20 commit 573fd1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/SharpYaml.Tests/SharpYaml.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net8.0;net48</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>10</LangVersion>
</PropertyGroup>
Expand Down

0 comments on commit 573fd1e

Please sign in to comment.