@Dani_S According to Microsoft's documentation ".NET Standard 2.1 is the last version of .NET Standard that will be released. For more information, see .NET 5+ and .NET Standard."
The documentation also addresses support -
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
1.I'm using VS 2026.
2.My current class library is:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
3.I see option only to move netstandard2.1 is it ?
4.netstandard2.1 supported client in .NET 9 and 10?
Thanks in advance,
@Dani_S According to Microsoft's documentation ".NET Standard 2.1 is the last version of .NET Standard that will be released. For more information, see .NET 5+ and .NET Standard."
The documentation also addresses support -
Yes, you can upgrade your class library from netstandard2.0 to netstandard2.1. The .NET Standard 2.1 version is supported by .NET 5 and later, which includes .NET 9 and .NET 10. Therefore, if you are using Visual Studio 2026, you should have the option to target netstandard2.1 and it will be compatible with clients running .NET 9 and 10.
References: