Share via

Logic Apps Functions allow Azure.Core?

Jesse 0 Reputation points
Apr 6, 2025, 12:28 AM

I am trying to access certain functionality using "call a local function" in my standard logic app. Does Logic App not support calling libraries that require Azure.Core Libraries? My function uses Azure.Core and my logic app fails at the runtime saying Azure.Core is missing. I did verify the assemblies section in my Logic Apps and I see Azure.Core.

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,444 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Shireesha Eeraboina 2,650 Reputation points Microsoft External Staff
    Apr 8, 2025, 5:19 AM

    Hello Jesse,

    When using Azure Logic Apps, local functions (inline code) run in a sandboxed, in-process environment, which can limit support for certain libraries like Azure.Core. Even if it's listed in the assemblies, it may not work as expected at runtime.

    Regarding your question: Yes, the Isolated Process model in Azure Functions offers more flexibility and better support for complex dependencies like Azure.Core. Logic Apps use an in-process model for inline code, which has limitations.

    If your code needs Azure.Core or other advanced libraries, the best approach is to move it into an Azure Function App (Isolated) and call it from your Logic App using an HTTP action.

    For your reference, please review the following documentations for further clarifications:

    I hope this addresses your query. Please let me know if you need any further assistance or clarification.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.