What is License path for Azure Function Deployment using C#

I am deploying myasp.net application which has aspose.words in azure cloud. The application starts with azure function. I am facing issue in placing the aspose license. I have kept the aspose license in bin folder which contains aspose.words.dll. But I get invoked member doesnot exist error.

Aspose.Words.License license=new Aspose.Words.License(); license.SetLicense(“Aspose.Words.lic”); //Error invoked member doesnot exist

Can someone please help on this?

@AngularCoding

We suggest you please embed the license file as a resource in your project and use following code to activate the license.

Aspose.Words.License lic = new Aspose.Words.License();
lic.SetLicense("Aspose.Words.lic");