Monday, 14 October 2019

Debugging multiple Azure Functions apps at the same time in local machine.



Settings:
{
  "IsEncrypted": false,
  "Values": {
    "AzureWebJobsStorage": "UseDevelopmentStorage=true",
   
  },
  "Host": {
    "LocalHttpPort": 7875
  }
}


Need to add below mentioned script line into application arguments under debug:
host start --pause-on-error


No comments:

Post a Comment