When I build and run ("Start Without Debugging" i.e. ctrl-F5) an Azure Function project, the newly built function will be unable to run if I have already have an earlier build of said function running (due to the port being in use).
Port 7071 is unavailable. Close the process using that port, or specify another port using --port [-p].
Compare ASP.NET Core builds: if I do the same thing, the old build will be automatically killed and replaced.
Is there a way to make Azure Functions replicate this behaviour?