I have a custom DLL which depends on packages in project.json. I am getting the following error:
2017-05-25T21:04:18.152 Exception while executing function:
Functions.TimerTriggerCSharp1. mscorlib: Exception has been thrown by the target of an invocation. f-TimerTriggerCSharp1__631134587: Could not load file or assembly 'MyAssemblyName, Version=MyAssemblyVersion, Culture=neutral, PublicKeyToken=MyAssemblyToken' or one of its dependencies. The system cannot find the file specified.
I've added the assembly in the bin/ folder and am referencing it with the full path. The assembly depends on other Nuget packages that I defined in project.json.
Any idea why I'm getting the error?