3

Our team has an existing .Net Core API solution. I'd like to add a series of function apps in a V2 functions project. This would allow reuse of the existing database repositories.

Is this possible / rational?

A.Rowan
  • 1,460
  • 2
  • 16
  • 20

1 Answers1

0

It is possible and rational. You can deploy just the functions app project, and have it running on Azure. Just remember to redeploy whenever there is a change in the dependent projects.

Ahmet
  • 906
  • 1
  • 8
  • 22
  • I set it up and had it compile locally, but it wasn't responding. Suppose I should have said that in the question... Any idea why it didn't respond? – A.Rowan Jun 22 '19 at 01:50
  • Does is respond when you deploy? If it works on Azure, perhaps, there is a firewall/port issue to access it locally. – Ahmet Jun 22 '19 at 02:32