I have created Blob Triggered Azure Function. I have added some DLLs in a folder named "ExternalAssemblies". If I have 3 DLLs in that folder I have to reference them with following lines at the top of my function:
#r "..\ExternalAssemblies\Assembly1.dll"
#r "..\ExternalAssemblies\Assembly2.dll"
#r "..\ExternalAssemblies\Assembly3.dll"
This became very tedious when I have many DLLs.
Is there any way by which I can just reference the "ExternalAssemblies" folder and all DLLs in it gets referred?
Thank You