I have an existing .NET Framework WCF service which returns data serialized using the NetDataContractSerializer, this is consumed by various .NET Framework clients.
I now want to write a new client application which will also consume it, but my new client will be written in .NET Core.
The Windows Compatibility Pack for .NET Core provides most of the APIs necessary to consume WCF services, however this key NetDataContractSerializer
class seems to be missing.
Is there any way of deserialising this data into a .NET Core app? The types themselves are in a shared .NET Framework assembly which happens to be .NET Standard compatible so that can be loaded in the .NET Core app no problem.