In the new .NET5, Support for WCF has now been removed.
I am wondering if it is possible to simply take all relevant source references from Microsofts source reference, and just compile it again in my C# project.
AKA, everything in the namespace of System.ServiceModel. Or is there other stuff that I would be missing too. Is there any nuget packages that already do this for me? I would be surprised if nobody else has attempted doing something like this.
CoreWCF unfortunately for my project will not work, as my project uses NetNamedPipeBinding, which is not supported in it.
I have looked also into migrating code into gRPC, but it seems like it might be quite a timely task to convert all my code into using it.