I am trying to implement the ICS creator sample for Azure Functions: https://github.com/Azure-Samples/azure-functions-create-ics-file-using-csharp-sample.
I followed all the steps there, but the difference with my implementation is that I'm running the function locally with Docker, and I am getting this error:
An unhandled exception occurred while processing the request.
CompilationErrorException: Script compilation failed. Microsoft.Azure.WebJobs.Script.Description.DotNetFunctionInvoker+d__26.MoveNext() in DotNetFunctionInvoker.cs, line 313
FunctionInvocationException: Exception while executing function: Functions.swinvite System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
Per my understanding, the error is related with the ical.net library, that is not being imported to the image. Any ideas?
Thank you in advance.