Reputation: 21
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.
Upvotes: 0
Views: 324
Reputation: 35144
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
Upvotes: 1