Filehelpers . NET CORE 2.0

Asked

Viewed 111 times

2

I’m migrating an application to. NET CORE 2.0 and the application used the Filehelpers library, I entered the library’s github and found that it has not yet been migrated to . NET CORE ... I wonder if it is possible to use this library in a project . NET CORE 2.0.

Otherwise, there is some library in . NET CORE that works similar to Filehelpers

1 answer

3


It is possible yes. I myself include a reference to the last alpha version bilblioteca in a project . NET core 2.0 and did not give any Warning. Usually when there is incompatibility problem the compiler issues a Warning.

inserir a descrição da imagem aqui

If this does not work for you, Voce should include the source indicated by them in your package sources list.

inserir a descrição da imagem aqui

It is compatible because it implements the . NET Standard. Basically the . NET Standard allows you to write a library compatible with any version of the framework that supports the same standard. What this means is that packages that use the . NET Framework (for example 4.6.x, 4.7.x, ...) can be used in . NET core.

In the same way that libraries written on the . NET core platform will be compatible with the . NET framework. Of course, provided they implement the same version of the Standard.

compatibility-between-net-core-2-0-e-net-framework-4-7

o-que-posso-fazer-no-net-framework-e-no-net-core-non-e-vice-versa

o-que-é-e-omo-funciona-o-net-Platform-standard

  • Sensational, worked perfectly for me, thank you very much !!!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.