79352070

Date: 2025-01-13 11:48:53
Score: 2
Natty:
Report link

You have created a c# script function, some of the nuget packages are not by default installed (refer to https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-csharp?tabs=functionsv2%2Cfixed-delay%2Cazure-cli#using-nuget-packages). The error message is clear that the 3 libraries are not installed via nuget.

For NuGet package, you can either use extension bundles or manually create extensions.csproj file in the site and remove the extensionBundle element from host.json. More details here:

https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-use-azure-function-app-settings?tabs=azure-portal%2Cto-premium#manually-install-extensions

My suggestion is to download the project to local and give it run before testing on func app.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: qkfang