0

I am developing Azure functions locally on VS and wish to publish them to azure portal later on. I want my function code to be non editable and non visible in the portal.

Is it possible to pre-compile these function to dll's while publishing? I am thinking this also saves the cold time as the function will be pre-compiled. Or do I need at least one function there in which I can add reference to the dll of other functions.

1 Answers1

1

Yes, if you are using Visual Studio 2017 or Visual Studio Code with CLI, that's the default way to publish .NET Azure Functions.

See

Mikhail Shilkov
  • 34,128
  • 3
  • 68
  • 107