"warning" when using .net SDK in ".Net Core 3.1" application

I understand that the SDK is a build compatible ".net standard 2.0" but when I add the nuget package to my .net core 3.1 project, I get a warning i.e.

Warning NU1701 Package 'ini-parser 3.4.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.

Can you please confirm if we can ignore this warning and SDK is ok to use on .Net Core 3.1 targeting Linux? - I do not want to spend time and efforts and later realize it is not useful...

Hi,

This warning is more than likely safe to ignore. The ini-parser is just used for parsing the optional config file if its in INI format. You can report any issues if they pop up.

Thanks,

Mike

@anon14299330, Thank you for responding.
Intension is to deploy on Linux where the ini files are used.
I will try out samples and will report any issues