this version not compatible netstandard2.1
Describe the bug Recently I am going to update my project from .net 3.x to 5.x. it is worked well, but the fact is it is not compatible .netstandard2.1
It is a .NET 5 class library. Why should it be .NET Standard 2.1? I'm not sure what your issue is.. Can you explain it to me?
Severity Code Description Project File Line Suppression State Error NU1202 Package ReflectionIT.Mvc.Paging 5.1.1 is not compatible with netstandard2.1 (.NETStandard,Version=v2.1). Package ReflectionIT.Mvc.Paging 5.1.1 supports: net5.0 (.NETCoreApp,Version=v5.0).
I'm was solve this way:
<TargetFramework>netstandard2.1</TargetFramework> ➡️ <TargetFramework>net5.0</TargetFramework>
now it's working fine.