How to convert net standard 2.0 C# library to net 7 library?
To convert a .NET Standard 2.0 C# library to .NET 7, you need to change the <TargetFramework> to be like this: <TargetFramework>net7.0</TargetFramework>¹. You also need to update all Nuget packages in the project to match the .NET Core 7 version². If you need to support an earlier version, it is recommend to target .NET… Read More »