I'm in a position where two different 3rd party libraries use different versions of Newtonsoft.Json, which are incompatible. For a regular application with a web.config or app.config, I can solve this using the <codeBase>
tag to resolve the different versions. How do I do this in Azure Functions, when there is no app- or web.config? Would I have to resort to to the AssemblyResolve
event or is there some mechanism to do the same thing?
Thanks in advance.