MachineCognitis / C.math.NET

Implements several C Standard mathematical functions (frexp, logb, ldexp, nextafter, etc.) that are missing from the .NET Framework
MIT License
9 stars 3 forks source link

Provide NuGet package for .NET Standard #2

Open CyberBotX opened 4 years ago

CyberBotX commented 4 years ago

While C.math.NET can be used in a .NET Core application or .NET Standard library successfully, the build process complains about it being restored for .NET Framework, claiming it may not be fully compatible with the project. It does not appear that C.math.NET uses anything that is .NET Framework specific and could be compiled with .NET Standard (any version, even as early as 1.0) as well as .NET Framework 2.0. If this could be provided, then it would allow the library to be used in a .NET Core or .NET Standard project without a spurious warning.

MachineCognitis commented 4 years ago

Thank you! I will look at this.