Is the PCANBasic .NET Assembly Be compatible with .NET 5.0?
Posted: Fri 11. Dec 2020, 14:36
Hi,
that's great! Is the lib compatible with .NET 5.0?
Cheers,
Choco
that's great! Is the lib compatible with .NET 5.0?
Cheers,
Choco
Support, Knowledge Base, and FAQ
https://forum.peak-system.com/
For further questions feel free to contact me again.For existing code that targets netstandard, there's no need to change the TFM to net5.0. .NET 5.0 implements .NET Standard 2.1 and earlier. The only reason to retarget from .NET Standard to .NET 5.0 would be to gain access to more runtime features, language features, or APIs. For example, in order to use C# 9, you need to target .NET 5.0. You can multitarget .NET 5.0 and .NET Standard to get access to newer features and still have your library available to other .NET implementations.