I have a .NET Core app running in AWS Lambda. I now have a requirement to read and do some calculations on an Excel file. I've found two libraries for Excel parsing in .NET Core, but each doesn't seem to be able to run in lambda for different reasons:
- https://github.com/VahidN/EPPlus.Core: Requires libgdiplus to be installed
- https://github.com/dotnetcore/NPOI: Requires .NET Core 2.0
Do I have any options besides:
- Wait for lambda to support .NET Core 2.0
- Not use lambda
Thanks.