0 votes
in Azure Function by
How can we use NuGet packages in my Azure Functions?

1 Answer

0 votes
by

Azure Functions portal does not currently provide a mechanism to add and manage NuGet packages, the runtime supports NuGet references and will make sure they are correctly used when compiling and executing your functions.

Here is an example that adds a reference:

{

  "frameworks": {

    "net46":{

      "dependencies": {

        "Microsoft.ProjectOxford.Face": "1.1.0"

      }

    }

   }

}

Related questions

+1 vote
asked Dec 18, 2022 in Azure by rajeshsharma
0 votes
asked Mar 16, 2022 in Azure Function by sharadyadav1986
...