You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Executing 'Functions.imageresizerfunc' (Reason='EventGrid trigger fired at 2018-10-10T23:36:18.3983661+00:00', Id=f56c4c83-3624-4673-99df-d24f6a1be981)
Function compilation error
run.csx(4,1): error CS0006: Metadata file 'ImageResizer' could not be found
run.csx(10,7): error CS0246: The type or namespace name 'ImageResizer' could not be found (are you missing a using directive or an assembly reference?)
The text was updated successfully, but these errors were encountered:
at async Microsoft.Azure.WebJobs.Script.Description.DotNetFunctionInvoker.CreateFunctionTarget(CancellationToken cancellationToken) at C:\azure-webjobs-sdk-script\src\WebJobs.Script\Description\DotNet\DotNetFunctionInvoker.cs : 314
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at async Microsoft.Azure.WebJobs.Script.Description.FunctionLoader`1.GetFunctionTargetAsync[T](Int32 attemptCount) at C:\azure-webjobs-sdk-script\src\WebJobs.Script\Description\FunctionLoader.cs : 55
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
You're missing the SixLabors.ImageSharp package - you need to add this in through Pacakage Manager.
SixLabors.ImageSharp is in pre-release so will not show in Nuget Package Manager unless you tick the "include pre-release" checkbox. You can also add it through the PM Console using Install-Package SixLabors.ImageSharp -Version 1.0.0-beta0007
I was following this scenario https://docs.microsoft.com/en-us/azure/event-grid/resize-images-on-storage-blob-upload-event?toc=%2Fazure%2Fstorage%2Fblobs%2Ftoc.json&tabs=net#deploy-the-function-code
here is the error
The text was updated successfully, but these errors were encountered: