我已关注此博客文章以创建预编译的azure函数。 https://blogs.msdn.microsoft.com/appserviceteam/2017/03/16/publishing-a-net-class-library-as-a-function-app/
是否可以在同一个项目/同一个dll中创建多个函数?
由于
答案 0 :(得分:3)
是的!
您需要在项目根目录中添加一个新文件夹,其中包含的函数名称包含function.json
。
然后,在function.json
将scriptFile
设置为您的dll,entryPoint
设置为您想要充当第二个功能的方法。
{
"scriptFile": "..\\bin\\SomeDll.dll",
"entryPoint": "FunctionsLibraryProject.HelloHttpTrigger.SecondRunMethod",
...
}