Rahul Dobriyal
Rahul Dobriyal

Reputation: 21

Is it possible to publish azure functions as precompiled dll's in the azure portal

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

Answers (1)

Mikhail Shilkov
Mikhail Shilkov

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

Related Questions