FileHelpers .NET CORE 2.0

2

I'm migrating an application to .NET CORE 2.0 and the application used the FileHelpers library, I logged into the github of the library and found that it has not yet been migrated to .NET CORE ... I wonder if you can use this library in a .NET CORE 2.0 project.

If it is not, there is some .NET CORE library that works similar to FileHelpers

    
asked by anonymous 15.06.2018 / 19:48

1 answer

3

Yes, it is possible. I even included a reference to the last alpha version libblioteca in a .NET core 2.0 project and did not give any warning. Usually when there is incompatibility problem the compiler issues a warning.

Ifthisdoesnotworkforyou,youshouldincludethesourceindicatedbytheminyourlistofpackagesources.

Itiscompatiblebecauseitimplements.NETStandard.Basically.NETStandardallowsyoutowritealibrarycompatiblewithanyversionoftheframeworkthatsupportsthesamestandard.Whatthismeansisthatpackagesthatusethe.NETFramework(forexample4.6.x,4.7.x,...)canbeusedin.NETcore.

Justaslibrarieswrittenonthe.NETcoreplatformwillbecompatiblewiththe.NETframework.Ofcourse,sincetheyimplementthesameversionofStandard.

net-core-compatibility-2-0-and-net-framework-4-7

the-that-can-do-in-net-framework-and-no-net-core-not-and-vice -versa

what-is-is-and-does-the-net-platform-standard

    
15.06.2018 / 21:36