Local Development Azure Function App Console Title

We’re developing Azure Functions using NSB and .Net 6. Under .Net Core 3.1 we would set the local Console.Title to the function name so when we ran our suites of functions, we knew which ones was which. Now, under .Net 6, the console that opens when developing locally is just dotnet.exe.

Is there any way to control the name of the console again?

Hi,

Are you using the isolated or the in process mode? Setting the title should just work unless there is something peculiar going on with the underlying host. In that case, it might be best to raise an issue in the corresponding host. For example, for the isolated mode you could raise an issue here.

Regards
Daniel

Hi Daniel. Thank you so much for your reply!

Yes, isolated. I’ll have to raise it as a Github issue. Thank you for the guidance.