You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But src/E4A.PostGuard.csproj has <TargetFramework>net10.0</TargetFramework>, and CI uses dotnet-version: 10.0.x. A consumer following the README will fail to restore on a .NET 8 SDK.
Suggested fix
Either:
(a) Update README to .NET 10.0+ SDK to match the actual target, or
(b) Add net8.0 as a target framework (multi-target) so the README claim is true — see issue Support dotnet 8 #5 which tracks .NET 8 support
Option (a) is the smaller fix; option (b) requires resolving #5 first.
Problem
README.mdsays under Prerequisites:But
src/E4A.PostGuard.csprojhas<TargetFramework>net10.0</TargetFramework>, and CI usesdotnet-version: 10.0.x. A consumer following the README will fail to restore on a .NET 8 SDK.Suggested fix
Either:
.NET 10.0+ SDKto match the actual target, ornet8.0as a target framework (multi-target) so the README claim is true — see issue Support dotnet 8 #5 which tracks .NET 8 supportOption (a) is the smaller fix; option (b) requires resolving #5 first.
Files
README.mdline ~32src/E4A.PostGuard.csprojline 4Related: #5