We have an Azure function which uses our custom dll (domain.dll), our dll internally has a dependency on LinqKit so we added the nuget package to our function but we get the below Exception --
Message: Could not load file or assembly 'LinqKit, Version=1.1.7.2, Culture=neutral, PublicKeyToken=bc217f8844052a91' or one of its dependencies. The system cannot find the file specified.,
We also tried directly adding the LinqKit.dll to the bin directory of the function and referencing it but still we get the same issue.
Please help