Skip to content

Commit

Permalink
Target .NET 4.6.2 instead of 4.6.1
Browse files Browse the repository at this point in the history
Since xunit.runner.visualstudio 2.4.5 only supports .NET 4.6.2 and
later: xunit/visualstudio.xunit#308

Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
  • Loading branch information
kevinoid committed Nov 14, 2022
1 parent 24b843e commit 872622b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NetCoreProject.UnitTests/NetCoreProject.UnitTests.csproj
Expand Up @@ -12,7 +12,7 @@
Newtonsoft.Json passes TestFrameworks from checks in build.ps1. Painful.
-->
<TargetFrameworks Condition="'$(CI)' == 'True'">$(TargetFrameworks);netcoreapp3.1</TargetFrameworks>
<TargetFrameworks Condition="'$(CI)' == 'True' and $([MSBuild]::IsOSPlatform('Windows'))">$(TargetFrameworks);net461</TargetFrameworks>
<TargetFrameworks Condition="'$(CI)' == 'True' and $([MSBuild]::IsOSPlatform('Windows'))">$(TargetFrameworks);net462</TargetFrameworks>

<!--
Disable check for EOL Target Framework (NETSDK1138).
Expand Down

0 comments on commit 872622b

Please sign in to comment.