Support for Azure Functions
See original GitHub issueWhen 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:
- Created 2 years ago
- Comments:18 (10 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Branch issues/fix/i543 created!
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.