Excel letter library compatible with .net-core

Does anyone know a library for writing to * .xlsx (2007-2010) that is compatible with .NET Core 1.0?

+4
source share
3 answers

EPPlus.Core is an unofficial port of the EPPlus library in .NET Core.

EPPlus.Core is available on nuget and can be installed by doing the following:

PM> Install-Package EPPlus.Core

Note:

To run the project on Linux, you will also need to install libgdiplus:

sudo apt-get update
sudo apt-get install libgdiplus
+2
source

DocumentFormat.OpenXml v 2.5.0

I am currently using it in a deployed ASP.net Core application

+2
source

Source: https://habr.com/ru/post/1653304/


All Articles