How to generate Microsoft Excel spreadsheets in . NET Core?

Asked

Viewed 641 times

0

I need to generate Microsoft Excel spreadsheets through .NET Core, there is some library that does this?

In my research I could only find the Open XML SDK from Microsoft itself, but support for . NET Core is still under development.

1 answer

2

As you mentioned yourself, this support is still open. As can be seen in Issues from the repository on Github.

There are two alternatives:

  1. A standard implementation of the Open XML SDK 2.5. You need to clone and build to use the packages.

  2. Another alternative, which has been used both to read and to export is the EPPlus. Which can be obtained via nuget.

Obs.: it is worth mentioning again that are alternatives.

  • it’s been a while and the Core project seems to me to be more mature, we have some solid solution to this problem?

  • Today you have epplus.core https://www.nuget.org/packages/EPPlus.Core/

  • Hello!! You have used what alternative to dotnet core currently?

Browser other questions tagged

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