Hello Chidinma Okafor,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that your Azure functions are not displaying in the function app.
If you are sure all the NOTEs in the document, you referenced is carefully noted.
- Use Azure CLI or PowerShell to list functions and get more detailed information:
az functionapp show --name <FunctionAppName> --resource-group <ResourceGroupName> az functionapp function show --name <FunctionName> --resource-group <ResourceGroupName> --function-name <FunctionName>
- If your app is listed proceed to verify that the Function App is running on a plan that supports the features you're using. For example, some configurations might require a Premium Plan or App Service Plan rather than a Consumption Plan.
- Ensure that you are using the latest version of Azure Functions tools in Visual Studio and updating these tools can resolve deployment issues.
- Clear the Function App cache in Kudu, navigate to
D:\home\site\wwwroot
and manually clear out old function files before redeploying. - Re-deploy the Function App this can resolve inconsistencies. You can use the Azure CLI or Visual Studio Code to redeploy.
NOTE: If your function app is not listed in state 1, jump to the last two.
Accept Answer
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
** Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful ** so that others in the community facing similar issues can easily find the solution.
Best Regards,
Sina Salam