question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Support for Azure Functions

See original GitHub issue

When I try using this in an Azure Function I receive the error:

System.Private.CoreLib: Exception while executing function: MyTestClass. ExtendedXmlSerializer: Unable to load DLL ‘fusion.dll’ or one of its dependencies: The specified module could not be found. (0x8007007E).

Here’s my sample code:

var serializer = new ConfigurationContainer()
    .EnableImplicitTyping(typeof(MyTestClass))
    .Create();
serializer.Serialize(new MyTestClass { MyProperty = 1 })
public class MyTestClass
{
    public int MyProperty { get; set; }
}

Is it possible for me to configure ExtendedXmlSerializer to be used with Azure Functions or is it possible for the library to be updated to be usable in an Azure Function?

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:18 (10 by maintainers)

github_iconTop GitHub Comments

2reactions
create-issue-branch[bot]commented, Aug 31, 2021

Branch issues/fix/i543 created!

1reaction
Mike-E-angelocommented, Sep 7, 2021

This has been deployed to NuGet: https://www.nuget.org/packages/ExtendedXmlSerializer/

Please do let me know if you encounter any additional/further issues and I will look into them for you.

Closing this for now.

<div>ExtendedXmlSerializer 3.7.5</div><div>An extensible Xml Serializer for .NET that builds on the functionality of the classic XmlSerializer with a powerful and robust extension model.</div>
Read more comments on GitHub >

github_iconTop Results From Across the Web

Azure Functions documentation
Azure Functions is a cloud service available on-demand that provides all the continually updated infrastructure and resources needed to run your applications.
Read more >
Azure Functions runtime versions overview
Azure Functions currently supports several versions of the runtime host. The following table details the available versions, their support ...
Read more >
Supported languages in Azure Functions
Azure Functions provides a guarantee of support for the major versions of supported programming languages. For most languages, there are minor ...
Read more >
Azure Functions language runtime support policy
To maintain full-support coverages for function apps, Functions support aligns with end-of-life support for a given language. To achieve this, ...
Read more >
Azure Functions 4.0 and .NET 6 support are now generally ...
NET 6 support in Azure Functions 4.0 is also generally available today. Azure Functions joins Azure Web Apps and Azure Static Web Apps...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found