If I'm understanding you correctly, you can't deploy multiple function app projects to the same function app service. The way to think of it is host.json
represents the worker and, in the case of .NET, each method decorated with [Function]
is seen as the function running under that worker.
To continue using two separate Function app projects, you will need to deploy the projects to two separate function apps.