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.
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.
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:
A standard implementation of the Open XML SDK 2.5. You need to clone and build to use the packages.
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.
Browser other questions tagged c# excel .net-core
You are not signed in. Login or sign up in order to post.
it’s been a while and the Core project seems to me to be more mature, we have some solid solution to this problem?
– Napoleão Menezes
Today you have epplus.core https://www.nuget.org/packages/EPPlus.Core/
– Felype
Hello!! You have used what alternative to dotnet core currently?
– Vinícius Avansini