I need to generate Microsoft Excel spreadsheets through .NET Core
, is there any library that does this?
In my searches I could only find Microsoft's own Open XML SDK , but support for .NET Core is still under development.
I need to generate Microsoft Excel spreadsheets through .NET Core
, is there any library that does this?
In my searches I could only find Microsoft's own Open XML SDK , but support for .NET Core is still under development.
As you mentioned, this support is still open. As you can see in the Repository Issues in GitHub.
There are two alternatives:
A standard Open XML SDK 2.5 implementation . You need to clone and build to use the packages.
Another alternative that has been used for both reading and exporting is EPPlus
. Which can be obtained via nuget.
obs: It's worth pointing out again that they are alternatives.