Forum Discussion
Azure Function - Update NuGet packages
Hi,
by using "app content download" yo will get the compiled project and not the source code, you need either to push using source control or by using azure cli extention for your visual studio code to push new changes to the function app, if you download the compiled code then modify and push it to azure or either try to build and run it locally, might not work.
if you have access to source code then probably it is possible to apply changes and push the code to function app -> using azure cli extention for VSCode and then it will be overwriten to the function app if you use the same name for deployment. any way the command for deployment is this :
you can run it from the project root ->
func azure functionapp publish <APP_NAME>
you might try to run the func app before deployment and see if it compiles with no error and test it locally before deploying, by using this command :
func start
if you have the source code of project -> please let me know so i can help.