Nico
Nico

Reputation: 193

Azure function precompiled multi function - same dll

I have followed this blog post to create a precompiled azure function. https://blogs.msdn.microsoft.com/appserviceteam/2017/03/16/publishing-a-net-class-library-as-a-function-app/

Is it possible to create more than one function in the same project / same dll ?

Thanks

Upvotes: 3

Views: 255

Answers (1)

Matt Mason
Matt Mason

Reputation: 2726

Yep!

You'll need to add a new folder at the root of your project with your function name that contains a function.json.

Then, inside that function.json set scriptFile to your dll and entryPoint to the method which you want to act as your 2nd function.

{
  "scriptFile": "..\\bin\\SomeDll.dll",
  "entryPoint": "FunctionsLibraryProject.HelloHttpTrigger.SecondRunMethod",
  ...
}

Upvotes: 3

Related Questions