How to generate Microsoft Excel spreadsheets in .NET Core?

0

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.

    
asked by anonymous 26.11.2016 / 23:11

1 answer

2

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.

        
    27.12.2016 / 07:45