I'm using Azure functions 1.x runtime and using .net framework 4.6.2 In my solution , I've two projects
1) Function App project 2) Class library targeting 4.6.2 framework. It has all the code for my business logic. This class library has other dependencies which are added by nuget
The function app project reference the class library via project reference in the solution.
When I build the project everything gets compiled without any error and under the bin folder of my function app project, I can see the Business Logic library dll as well as its dependencies
But when I run the project , it gives me the error of "Could not load assembly"
. This assembly is referring to the transitive dependency of my business logic library which were added via nuget.
I've compared the version and everything and under the bin folder of my function app project I can see all the required dependencies then why the functions runtime is not able to load this files. Am i doing some thing wrong
Please advise.